summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HFuse/default.nix
blob: 05caf6975ac316640d610cbcba8edf6675bc25bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, fuse }:

cabal.mkDerivation (self: {
  pname = "HFuse";
  version = "0.2.4.4";
  sha256 = "1wsrf9y90dk27da9pm9m11hnrxwrqwvq6c9799b91a91mc2lxslc";
  isLibrary = true;
  isExecutable = true;
  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/m15k/hfuse";
    description = "HFuse is a binding for the Linux FUSE library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.stdenv.lib.platforms.linux;
    maintainers = with self.stdenv.lib.maintainers; [ andres ];
  };
})