nixpkgs/pkgs/build-support/templaterpm/default.nix

25 lines
734 B
Nix
Raw Normal View History

{stdenv, makeWrapper, python, toposort, rpm}:
stdenv.mkDerivation rec {
pname = "nix-template-rpm";
version = "0.1";
buildInputs = [ makeWrapper python toposort rpm ];
phases = [ "installPhase" "fixupPhase" ];
installPhase = ''
mkdir -p $out/bin
cp ${./nix-template-rpm.py} $out/bin/nix-template-rpm
wrapProgram $out/bin/nix-template-rpm \
--set PYTHONPATH "${rpm}/lib/${python.libPrefix}/site-packages":"${toposort}/lib/${python.libPrefix}/site-packages"
'';
meta = with stdenv.lib; {
description = "Create templates of nix expressions from RPM .spec files";
maintainers = with maintainers; [ tstrobel ];
platforms = with stdenv.lib.platforms; unix;
hydraPlatforms = [];
};
}