summary refs log tree commit diff
path: root/pkgs/development/libraries/libctemplate
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-04 09:14:57 -0400
committerSamuel Leathers <sam@appliedtrust.com>2017-09-04 09:14:57 -0400
commit896f0daa1a0ebdd70367aa08a64aeeeb6dea20dd (patch)
tree6e8a25461c9e1096a973e1d130f84a64bb2bf50f /pkgs/development/libraries/libctemplate
parent97935829f6d271ab5cc91a299146cb6a1d903cc4 (diff)
downloadnixpkgs-896f0daa1a0ebdd70367aa08a64aeeeb6dea20dd.tar
nixpkgs-896f0daa1a0ebdd70367aa08a64aeeeb6dea20dd.tar.gz
nixpkgs-896f0daa1a0ebdd70367aa08a64aeeeb6dea20dd.tar.bz2
nixpkgs-896f0daa1a0ebdd70367aa08a64aeeeb6dea20dd.tar.lz
nixpkgs-896f0daa1a0ebdd70367aa08a64aeeeb6dea20dd.tar.xz
nixpkgs-896f0daa1a0ebdd70367aa08a64aeeeb6dea20dd.tar.zst
nixpkgs-896f0daa1a0ebdd70367aa08a64aeeeb6dea20dd.zip
libctemplate: remove 2.2
Diffstat (limited to 'pkgs/development/libraries/libctemplate')
-rw-r--r--pkgs/development/libraries/libctemplate/2.2.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/libraries/libctemplate/2.2.nix b/pkgs/development/libraries/libctemplate/2.2.nix
deleted file mode 100644
index 7440039eec9..00000000000
--- a/pkgs/development/libraries/libctemplate/2.2.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  pname = "ctemplate";
-  version = "2.2";
-  name = "${pname}-${version}";
-
-  src = fetchurl {
-    url = "http://ctemplate.googlecode.com/files/${name}.tar.gz";
-    sha256 = "0vv8gvyndppm9m5s1i5k0jvwcz41l1vfgg04r7nssdpzyz0cpwq4";
-  };
-
-  meta = {
-    description = "A simple but powerful template language for C++";
-    longDescription = ''
-      CTemplate is a simple but powerful template language for C++. It
-      emphasizes separating logic from presentation: it is impossible to
-      embed application logic in this template language.  '';
-    homepage = http://code.google.com/p/google-ctemplate/;
-    license = "bsd";
-    platforms = stdenv.lib.platforms.unix;
-  };
-}