summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-11-16 21:55:46 +0200
committerArtturin <Artturin@artturin.com>2022-11-24 22:32:34 +0200
commit81db0fc59c8b4c200e75a82474c67568f4820336 (patch)
tree0bb199a2604cecf3e5f8913313c2d8bd92c26b84
parent3452cd83167a1c7dcfb0f065686386fbecce237f (diff)
downloadnixpkgs-81db0fc59c8b4c200e75a82474c67568f4820336.tar
nixpkgs-81db0fc59c8b4c200e75a82474c67568f4820336.tar.gz
nixpkgs-81db0fc59c8b4c200e75a82474c67568f4820336.tar.bz2
nixpkgs-81db0fc59c8b4c200e75a82474c67568f4820336.tar.lz
nixpkgs-81db0fc59c8b4c200e75a82474c67568f4820336.tar.xz
nixpkgs-81db0fc59c8b4c200e75a82474c67568f4820336.tar.zst
nixpkgs-81db0fc59c8b4c200e75a82474c67568f4820336.zip
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"
-rw-r--r--pkgs/tools/filesystems/fsfs/default.nix32
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/tools/filesystems/fsfs/default.nix b/pkgs/tools/filesystems/fsfs/default.nix
deleted file mode 100644
index 836b94dc795..00000000000
--- a/pkgs/tools/filesystems/fsfs/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{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;
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 173dd01288b..86cdcbd2645 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -6846,8 +6846,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 { };