Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
35 lines
969 B
Nix
35 lines
969 B
Nix
{ stdenv, callPackage, cmake, pkg-config, glib, libao, intltool, libmirage, coreutils }:
|
|
|
|
let
|
|
inherit (callPackage ./common-drv-attrs.nix {
|
|
version = "3.2.7";
|
|
pname = "cdemu-daemon";
|
|
hash = "sha256-EKh2G6RA9Yq46BpTAqN2s6TpLJb8gwDuEpGiwdGcelc=";
|
|
}) pname version src meta;
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version src;
|
|
|
|
nativeBuildInputs = [ cmake pkg-config intltool ];
|
|
buildInputs = [ glib libao libmirage ];
|
|
postInstall = ''
|
|
mkdir -p $out/share/dbus-1/services
|
|
cp -R ../service-example $out/share/cdemu
|
|
substitute \
|
|
$out/share/cdemu/net.sf.cdemu.CDEmuDaemon.service \
|
|
$out/share/dbus-1/services/net.sf.cdemu.CDEmuDaemon.service \
|
|
--replace /bin/true ${coreutils}/bin/true
|
|
'';
|
|
|
|
meta = {
|
|
inherit (meta)
|
|
description
|
|
license
|
|
longDescription
|
|
maintainers
|
|
platforms
|
|
;
|
|
homepage = "https://cdemu.sourceforge.io/about/daemon/";
|
|
mainProgram = "cdemu-daemon";
|
|
};
|
|
}
|