about summary refs log tree commit diff
path: root/pkgs/tools/archivers/wimlib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/archivers/wimlib/default.nix')
-rw-r--r--pkgs/tools/archivers/wimlib/default.nix51
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/tools/archivers/wimlib/default.nix b/pkgs/tools/archivers/wimlib/default.nix
deleted file mode 100644
index 6aa2c95fa140..000000000000
--- a/pkgs/tools/archivers/wimlib/default.nix
+++ /dev/null
@@ -1,51 +0,0 @@
-{ lib, stdenv, fetchurl, makeWrapper
-, pkg-config
-, cabextract ? null
-, cdrkit ? null
-, mtools ? null
-, fuse3 ? null
-, ntfs3g ? null
-, syslinux ? null
-}:
-
-stdenv.mkDerivation rec {
-  version = "1.14.4";
-  pname = "wimlib";
-
-  nativeBuildInputs = [ pkg-config makeWrapper ];
-  buildInputs = [ ntfs3g ] ++ lib.optionals (!stdenv.isDarwin) [ fuse3 ];
-
-  src = fetchurl {
-    url = "https://wimlib.net/downloads/${pname}-${version}.tar.gz";
-    hash = "sha256-NjPbK2yLJV64bTvz3zBZeWvR8I5QuMlyjH62ZmLlEwA=";
-  };
-
-  enableParallelBuilding = true;
-
-  preBuild = lib.optionalString (!stdenv.isDarwin) ''
-    substituteInPlace programs/mkwinpeimg.in \
-      --replace '/usr/lib/syslinux' "${syslinux}/share/syslinux"
-  '';
-
-  postInstall = let
-    path = lib.makeBinPath  ([ cabextract mtools ntfs3g ] ++ lib.optionals (!stdenv.isDarwin) [ cdrkit syslinux fuse3 ]);
-  in ''
-    for prog in $out/bin/*; do
-      wrapProgram $prog --prefix PATH : $out/bin:${path}
-    done
-  '';
-
-  doCheck = (!stdenv.isDarwin);
-
-  preCheck = ''
-    patchShebangs tests
-  '';
-
-  meta = with lib; {
-    homepage = "https://wimlib.net";
-    description = "Library and program to extract, create, and modify WIM files";
-    platforms = platforms.unix;
-    maintainers = [ ];
-    license = with licenses; [ gpl3 lgpl3 mit ];
-  };
-}