mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
libctemplate: packaged.
Patch by Karn Kallio. svn path=/nixpkgs/trunk/; revision=23981
This commit is contained in:
parent
f3ad9868b4
commit
352b0de4a6
22
pkgs/development/libraries/libctemplate/default.nix
Normal file
22
pkgs/development/libraries/libctemplate/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
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";
|
||||
};
|
||||
|
||||
pname = "ctemplate";
|
||||
version = "0.97";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://google-ctemplate.googlecode.com/files/${name}.tar.gz";
|
||||
sha256 = "0p588zjf7gyi06rcggh9ljx2bj5250zi7s8y3vxmg3j9vddhkdyx";
|
||||
};
|
||||
}
|
@ -3169,6 +3169,8 @@ let
|
||||
|
||||
libcm = callPackage ../development/libraries/libcm { };
|
||||
|
||||
libctemplate = callPackage ../development/libraries/libctemplate { };
|
||||
|
||||
libcue = callPackage ../development/libraries/libcue { };
|
||||
|
||||
libcv = builderDefsPackage (import ../development/libraries/libcv) {
|
||||
|
Loading…
Reference in New Issue
Block a user