1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00

HFuse: a binding for the Linux FUSE library.

svn path=/nixpkgs/trunk/; revision=28381
This commit is contained in:
David Guibert 2011-08-08 12:12:04 +00:00
parent 850748a6f3
commit fcb686d418
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ cabal, fuse }:
cabal.mkDerivation (self: {
pname = "HFuse";
version = "0.2.4";
sha256 = "1v3kfkm2rz7bvwk0j8p9rhnnsffbnkismnsq0fkgnzi5z0bz5sgv";
extraBuildInputs = [ fuse ];
preConfigure = ''
sed -i -e "s@ Extra-Lib-Dirs: /usr/local/lib@ Extra-Lib-Dirs: ${fuse}/lib@" HFuse.cabal
'';
})

View file

@ -695,6 +695,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
inherit (pkgs) sqlite;
};
HFuse = callPackage ../development/libraries/haskell/hfuse {
inherit (pkgs) fuse;
};
HGL = callPackage ../development/libraries/haskell/HGL {};
highlightingKate = callPackage ../development/libraries/haskell/highlighting-kate {};