summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorlethalman <lucabru@src.gnome.org>2015-06-18 14:51:17 +0200
committerlethalman <lucabru@src.gnome.org>2015-06-18 14:51:17 +0200
commit0243472c05d4ffc021c72ee02471d9db1565a9c0 (patch)
tree5a554aee9f5a535dffab1ac407ffd65f3b3ebaf1 /pkgs
parentddeb2f5cceef9d5cc146972850e6990cec1e7981 (diff)
parented554d5ae21b7769d64835d02cdad9f8185dcd0f (diff)
downloadnixlib-0243472c05d4ffc021c72ee02471d9db1565a9c0.tar
nixlib-0243472c05d4ffc021c72ee02471d9db1565a9c0.tar.gz
nixlib-0243472c05d4ffc021c72ee02471d9db1565a9c0.tar.bz2
nixlib-0243472c05d4ffc021c72ee02471d9db1565a9c0.tar.lz
nixlib-0243472c05d4ffc021c72ee02471d9db1565a9c0.tar.xz
nixlib-0243472c05d4ffc021c72ee02471d9db1565a9c0.tar.zst
nixlib-0243472c05d4ffc021c72ee02471d9db1565a9c0.zip
Merge pull request #8344 from joachifm/redundant-cheetah
Delete redundant expression cheetahTemplate
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/text/cheetah-template/2.0.1.nix18
-rw-r--r--pkgs/top-level/all-packages.nix5
2 files changed, 1 insertions, 22 deletions
diff --git a/pkgs/tools/text/cheetah-template/2.0.1.nix b/pkgs/tools/text/cheetah-template/2.0.1.nix
deleted file mode 100644
index 0bfa72ca00d5..000000000000
--- a/pkgs/tools/text/cheetah-template/2.0.1.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-args : with args; 
-rec {
-  src = fetchurl {
-    url = mirror://sourceforge/cheetahtemplate/Cheetah-2.0.1.tar.gz;
-    sha256 = "134k4s5f116k23vb7wf9bynlx3gf0wwl7y0zp9ciz0q66nh1idkh";
-  };
-
-  buildInputs = [python makeWrapper];
-  configureFlags = [];
-
-  /* doConfigure should be specified separately */
-  phaseNames = ["installPythonPackage" (makeManyWrappers ''$out/bin/*'' ''--prefix PYTHONPATH : $(toPythonPath $out)'')];
-      
-  name = "cheetah-template-2.0.1";
-  meta = {
-    description = "Templating engine";
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b1d4a5df473d..a91cb010a399 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1029,10 +1029,6 @@ let
 
   checkinstall = callPackage ../tools/package-management/checkinstall { };
 
-  cheetahTemplate = builderDefsPackage (import ../tools/text/cheetah-template/2.0.1.nix) {
-    inherit makeWrapper python;
-  };
-
   chkrootkit = callPackage ../tools/security/chkrootkit { };
 
   chocolateDoom = callPackage ../games/chocolate-doom { };
@@ -14880,6 +14876,7 @@ let
   haskell-ng = haskell;                 # 2015-04-19
   haskellngPackages = haskellPackages;  # 2015-04-19
   inherit (haskell.compiler) jhc uhc;   # 2015-05-15
+  cheetahTemplate = pythonPackages.cheetah; # 2015-06-15
 
   opentsdb = callPackage ../tools/misc/opentsdb {};