Add cdemu packages and module

This commit is contained in:
Herwig Hochleitner
2015-02-10 06:49:47 +01:00
parent d49405a5ab
commit 2961b83d08
10 changed files with 175 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ callPackage, python, dbus_python, intltool, makeWrapper }:
let pkg = import ./base.nix {
version = "3.0.0";
pkgName = "cdemu-client";
pkgSha256 = "125f6j7c52a0c7smbx323vdpwhx24yl0vglkiyfcbm92fjji14rm";
};
in callPackage pkg {
buildInputs = [ python dbus_python intltool makeWrapper ];
drvParams = {
postFixup = ''
wrapProgram $out/bin/cdemu \
--set PYTHONPATH "$PYTHONPATH"
'';
};
}