haskell-HFuse: fix capitalization of directory name
This commit is contained in:
22
pkgs/development/libraries/haskell/HFuse/default.nix
Normal file
22
pkgs/development/libraries/haskell/HFuse/default.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ cabal, fuse }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "HFuse";
|
||||
version = "0.2.4.1";
|
||||
sha256 = "12k04dvh92kk2i68bcb70xnk378qxmh46f241k06di5rkcgwyg1k";
|
||||
extraLibraries = [ fuse ];
|
||||
|
||||
preConfigure = ''
|
||||
sed -i -e "s@ Extra-Lib-Dirs: /usr/local/lib@ Extra-Lib-Dirs: ${fuse}/lib@" HFuse.cabal
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/toothbrush/hfuse";
|
||||
description = "HFuse is a binding for the Linux FUSE library";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [
|
||||
self.stdenv.lib.maintainers.andres
|
||||
];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user