Commit 40cf41a5 authored by Artturin's avatar Artturin Committed by github-actions[bot]
Browse files

fsfs: remove package which has never worked and project is dead

fsfs was added in https://github.com/NixOS/nixpkgs/commit/f00bdb6f150e2786bcb0186e95bf05b0d70ed44d
with a throw that states "it still does not build"

(cherry picked from commit 81db0fc5)
parent 49bbd2ba
Loading
Loading
Loading
Loading
+0 −32
Original line number Diff line number Diff line
{lib, stdenv, fetchurl, openssl, fuse}:

throw "It still does not build"

stdenv.mkDerivation rec {
  pname = "fsfs";
  version = "0.1.1";

  src = fetchurl {
    url = "mirror://sourceforge/fsfs/fsfs-${version}.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;
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -6836,8 +6836,6 @@ with pkgs;
  fsarchiver = callPackage ../tools/archivers/fsarchiver { };
  fsfs = callPackage ../tools/filesystems/fsfs { };
  fstl = qt5.callPackage ../applications/graphics/fstl { };
  fswebcam = callPackage ../os-specific/linux/fswebcam { };