about summary refs log tree commit diff
path: root/pkgs/tools/archivers
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien@users.noreply.github.com>2024-01-14 10:57:54 +0100
committerGitHub <noreply@github.com>2024-01-14 10:57:54 +0100
commit7f17864b5c530993aeb156ad14b64f419017b605 (patch)
tree9a47de8c43b10dd52f70026614a9e3ee28696a14 /pkgs/tools/archivers
parentc30bdd3869c871478f8a41760be55883830e1957 (diff)
parentaca6903d2b873d3d067b19b1e6e13c4dc8ae50ed (diff)
Merge pull request #278992 from ehmry/tarlz
tarlz: 0.24 -> 0.25
Diffstat (limited to 'pkgs/tools/archivers')
-rw-r--r--pkgs/tools/archivers/tarlz/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/tools/archivers/tarlz/default.nix b/pkgs/tools/archivers/tarlz/default.nix
deleted file mode 100644
index 0f031338cf6c0..0000000000000
--- a/pkgs/tools/archivers/tarlz/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
-
-stdenv.mkDerivation rec {
-  pname = "tarlz";
-  version = "0.24";
-  outputs = [ "out" "man" "info" ];
-
-  nativeBuildInputs = [ lzip texinfo ];
-  buildInputs = [ lzlib ];
-
-  src = fetchurl {
-    url = "mirror://savannah/lzip/${pname}/${pname}-${version}.tar.lz";
-    sha256 = "49838effe95acb29d548b7ef2ddbb4b63face40536df0d9a80a62900c7170576";
-  };
-
-  enableParallelBuilding = true;
-  makeFlags = [ "CXX:=$(CXX)" ];
-
-  doCheck = false; # system clock issues
-
-  meta = with lib; {
-    homepage = "https://www.nongnu.org/lzip/${pname}.html";
-    description =
-      "Massively parallel combined implementation of the tar archiver and the lzip compressor";
-    license = licenses.gpl2Plus;
-    platforms = platforms.all;
-    maintainers = with maintainers; [ ehmry ];
-    mainProgram = "tarlz";
-  };
-}