haskell-HFuse: fix capitalization of directory name

This commit is contained in:
Peter Simons
2013-05-30 12:15:02 +02:00
parent d9c5a29897
commit ff1dbd50b8
2 changed files with 1 additions and 1 deletions

View 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
];
};
})