about summary refs log tree commit diff
path: root/pkgs/development/libraries/libunarr/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/libunarr/default.nix')
-rw-r--r--pkgs/development/libraries/libunarr/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/development/libraries/libunarr/default.nix b/pkgs/development/libraries/libunarr/default.nix
deleted file mode 100644
index d73bed773dff..000000000000
--- a/pkgs/development/libraries/libunarr/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib
-, stdenv
-, fetchurl
-, cmake
-}:
-
-stdenv.mkDerivation rec {
-  pname = "libunarr";
-  version = "1.1.1";
-
-  src = fetchurl {
-    url = "https://github.com/selmf/unarr/releases/download/v${version}/unarr-${version}.tar.xz";
-    hash = "sha256-Mo76BOqZbdOJFrEkeozxdqwpuFyvkhdONNMZmN5BdNI=";
-  };
-
-  postPatch = lib.optionalString stdenv.isDarwin ''
-    substituteInPlace CMakeLists.txt \
-      --replace "-flto" "" \
-      --replace "AppleClang" "Clang"
-  '';
-
-  nativeBuildInputs = [
-    cmake
-  ];
-
-  meta = with lib; {
-    homepage = "https://github.com/selmf/unarr";
-    description = "Lightweight decompression library with support for rar, tar and zip archives";
-    license = licenses.lgpl3Plus;
-    maintainers = with maintainers; [ wegank ];
-    platforms = platforms.unix;
-  };
-}