2014-10-20 01:16:24 +02:00
|
|
|
{ stdenv, fetchurl, rpm, cpio, substituteAll }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "rpmextract";
|
|
|
|
|
2014-10-22 14:13:26 +02:00
|
|
|
buildCommand = ''
|
2014-10-20 01:16:24 +02:00
|
|
|
install -Dm755 $script $out/bin/rpmextract
|
|
|
|
'';
|
|
|
|
|
|
|
|
script = substituteAll {
|
|
|
|
src = ./rpmextract.sh;
|
|
|
|
inherit rpm cpio;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Script to extract RPM archives";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = maintainers.abbradar;
|
|
|
|
};
|
|
|
|
}
|