nixpkgs/pkgs/tools/archivers/rpmextract/default.nix

24 lines
495 B
Nix
Raw Normal View History

{ stdenv, rpm, cpio, substituteAll }:
2014-10-19 23:16:24 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2014-10-19 23:16:24 +00:00
name = "rpmextract";
buildCommand = ''
2014-10-19 23:16:24 +00:00
install -Dm755 $script $out/bin/rpmextract
'';
script = substituteAll {
src = ./rpmextract.sh;
isExecutable = true;
2014-10-19 23:16:24 +00:00
inherit rpm cpio;
inherit (stdenv) shell;
2014-10-19 23:16:24 +00:00
};
meta = with stdenv.lib; {
description = "Script to extract RPM archives";
platforms = platforms.all;
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar ];
2014-10-19 23:16:24 +00:00
};
}