summary refs log tree commit diff
path: root/pkgs/tools/archivers
diff options
context:
space:
mode:
authorzseri <zseri.devel@ytrizja.de>2021-03-15 17:18:21 +0100
committerzseri <zseri.devel@ytrizja.de>2021-03-17 03:00:58 +0100
commit98f353c4050978390e22129d242fdf788649465e (patch)
tree2be35fb9c8241c28766d0a07f4e27af7af2a8101 /pkgs/tools/archivers
parent01c6925eba5c3a88efdf776bf3238eac6e1949c0 (diff)
downloadnixpkgs-98f353c4050978390e22129d242fdf788649465e.tar
nixpkgs-98f353c4050978390e22129d242fdf788649465e.tar.gz
nixpkgs-98f353c4050978390e22129d242fdf788649465e.tar.bz2
nixpkgs-98f353c4050978390e22129d242fdf788649465e.tar.lz
nixpkgs-98f353c4050978390e22129d242fdf788649465e.tar.xz
nixpkgs-98f353c4050978390e22129d242fdf788649465e.tar.zst
nixpkgs-98f353c4050978390e22129d242fdf788649465e.zip
rpm2targz: init at 9.0.0.5g
Diffstat (limited to 'pkgs/tools/archivers')
-rw-r--r--pkgs/tools/archivers/rpm2targz/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/pkgs/tools/archivers/rpm2targz/default.nix b/pkgs/tools/archivers/rpm2targz/default.nix
new file mode 100644
index 00000000000..ac5b132d7ab
--- /dev/null
+++ b/pkgs/tools/archivers/rpm2targz/default.nix
@@ -0,0 +1,55 @@
+{ bzip2
+, coreutils
+, cpio
+, fetchurl
+, gnutar
+, gzip
+, lib
+, stdenv
+, xz
+, zstd
+}:
+
+let
+  shdeps = [
+    bzip2
+    coreutils
+    cpio
+    gnutar
+    gzip
+    xz
+    zstd
+  ];
+
+in stdenv.mkDerivation rec {
+  pname = "rpm2targz";
+  version = "2021.03.16";
+
+  # git repo: https://gitweb.gentoo.org/proj/rpm2targz.git/
+  src = fetchurl {
+    url = "https://dev.gentoo.org/~vapier/dist/${pname}-${version}.tar.xz";
+    hash = "sha256-rcV+o9V2wWKznqSW2rA8xgnpQ02kpK4te6mYvLRC5vQ=";
+  };
+
+  buildInputs = shdeps;
+
+  postPatch = ''
+    substituteInPlace rpm2targz --replace "=\"rpmoffset\"" "=\"$out/bin/rpmoffset\""
+    # rpm2targz relies on the executable name
+    # to guess what compressor it should use
+    # this is more reliable than wrapProgram
+    sed -i -e '2iexport PATH="${lib.makeBinPath shdeps}"' rpm2targz
+  '';
+
+  preBuild = ''
+    makeFlagsArray+=(prefix=$out)
+  '';
+
+  meta = with lib; {
+    description = "Convert a .rpm file to a .tar.gz archive";
+    homepage = "http://slackware.com/config/packages.php";
+    license = licenses.bsd1;
+    maintainers = with maintainers; [ zseri ];
+    platforms = platforms.all;
+  };
+}