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:
parent
850748a6f3
commit
fcb686d418
11
pkgs/development/libraries/haskell/hfuse/default.nix
Normal file
11
pkgs/development/libraries/haskell/hfuse/default.nix
Normal 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
|
||||
'';
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue