summary refs log tree commit diff
path: root/pkgs/tools/package-management
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-12-01 16:36:38 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2016-12-01 21:07:33 +0100
commit74276caf194ac9a1398cf164ec6604c3730f75a2 (patch)
tree406627d2d083c8dae1cdd8d3403f571f533ad516 /pkgs/tools/package-management
parentbe020a25826be05518214061fa5396ed101ceb94 (diff)
downloadnixlib-74276caf194ac9a1398cf164ec6604c3730f75a2.tar
nixlib-74276caf194ac9a1398cf164ec6604c3730f75a2.tar.gz
nixlib-74276caf194ac9a1398cf164ec6604c3730f75a2.tar.bz2
nixlib-74276caf194ac9a1398cf164ec6604c3730f75a2.tar.lz
nixlib-74276caf194ac9a1398cf164ec6604c3730f75a2.tar.xz
nixlib-74276caf194ac9a1398cf164ec6604c3730f75a2.tar.zst
nixlib-74276caf194ac9a1398cf164ec6604c3730f75a2.zip
koji -> pythonPackages.koji
koji is both a library and an application. It is used in Nixpkgs
primarily as a library and therefore I move it.
Diffstat (limited to 'pkgs/tools/package-management')
-rw-r--r--pkgs/tools/package-management/koji/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/tools/package-management/koji/default.nix b/pkgs/tools/package-management/koji/default.nix
deleted file mode 100644
index 7d2022ee91bb..000000000000
--- a/pkgs/tools/package-management/koji/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, fetchurl, python2 }:
-
-let
-  pythonEnv = python2.withPackages(ps : [ps.pycurl]);
-in stdenv.mkDerivation rec {
-  name = "koji-1.8";
-
-  src = fetchurl {
-    url = "https://fedorahosted.org/released/koji/koji-1.8.0.tar.bz2";
-    sha256 = "10dph209h4jgajb5jmbjhqy4z4hd22i7s2d93vm3ikdf01i8iwf1";
-  };
-
-  propagatedBuildInputs = [ pythonEnv ];
-
-  makeFlags = "DESTDIR=$(out)";
-
-  postInstall = ''
-    cp -R $out/nix/store/*/* $out/
-    rm -rf $out/nix
-  '';
-
-  meta = {
-    maintainers = [ stdenv.lib.maintainers.mornfall ];
-    platforms = stdenv.lib.platforms.linux;
-  };
-}