koji: factor python module into an standalone app

This commit is contained in:
Domen Kožar
2014-08-30 21:08:49 +02:00
parent 33949a413c
commit b8fca7b38c
3 changed files with 23 additions and 19 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchurl, pythonPackages, python }:
stdenv.mkDerivation rec {
name = "koji-1.8";
src = fetchurl {
url = "https://fedorahosted.org/released/koji/koji-1.8.0.tar.bz2";
sha256 = "10dph209h4jgajb5jmbjhqy4z4hd22i7s2d93vm3ikdf01i8iwf1";
};
propagatedBuildInputs = [ pythonPackages.pycurl python ];
makeFlags = "DESTDIR=$(out)";
postInstall = ''
cp -R $out/nix/store/*/* $out/
rm -rf $out/nix
'';
meta.maintainers = [ stdenv.lib.maintainers.mornfall ];
}