about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/filesystems/fsfs/default.nix
blob: 114c83e84f4abf2abe10b56bc742d3409da1e037 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{lib, stdenv, fetchurl, openssl, fuse}:

throw "It still does not build"

stdenv.mkDerivation {
  name = "fsfs-0.1.1";
  src = fetchurl {
    url = "mirror://sourceforge/fsfs/fsfs-0.1.1.tar.gz";
    sha256 = "05wka9aq182li2r7gxcd8bb3rhpns7ads0k59v7w1jza60l57c74";
  };

  buildInputs = [ fuse openssl ];

  patchPhase = ''
    sed -i -e 's,CONFDIR=\(.*\),CONFDIR='$out/etc, \
      -e 's,USERCONFPREFIX=\(.*\),USERCONFPREFIX='$out/var/lib, Makefile \
      src/Makefile src/utils/Makefile
  '';

  preInstall = ''
    mkdir -p $out/etc $out/var/lib
    makeFlags="$makeFlags prefix=$out"
  '';

  meta = {
    homepage = "http://fsfs.sourceforge.net/";
    description = "Secure distributed file system in user space";
    license = lib.licenses.gpl2Plus;
  };
}