Delete redundant expression cheetahTemplate

Use the one provided by python-packages instead; retain the
top-level cheetahTemplate name as an alias.
This commit is contained in:
Joachim Fasting 2015-06-15 13:15:03 +02:00
parent e1af50c4c4
commit ed554d5ae2
2 changed files with 1 additions and 22 deletions

View File

@ -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";
};
}

View File

@ -1022,10 +1022,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 { };
@ -14802,6 +14798,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 {};