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
+18
View File
@@ -0,0 +1,18 @@
{ callPackage, python, pygobject3, gtk3, glib, libnotify, intltool, makeWrapper, gobjectIntrospection }:
let pkg = import ./base.nix {
version = "3.0.0";
pkgName = "gcdemu";
pkgSha256 = "1m5ab325r586v2y2d93a817phn6wck67y5mfkf948mph40ks0mqk";
};
in callPackage pkg {
buildInputs = [ python pygobject3 gtk3 glib libnotify intltool makeWrapper ];
drvParams = {
postFixup = ''
wrapProgram $out/bin/gcdemu \
--set PYTHONPATH "$PYTHONPATH" \
--set GI_TYPELIB_PATH "$GI_TYPELIB_PATH" \
--set XDG_DATA_DIRS "$out/share:$XDG_DATA_DIRS"
'';
# TODO AppIndicator
};
}