ctpl: init at 0.3.4
This commit is contained in:
parent
417c017840
commit
62b567bf56
20
pkgs/development/libraries/ctpl/default.nix
Normal file
20
pkgs/development/libraries/ctpl/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, glib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ctpl-${version}";
|
||||||
|
version = "0.3.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://download.tuxfamily.org/ctpl/releases/ctpl-${version}.tar.gz";
|
||||||
|
sha256 = "1yr92xv9n6kgyixwg9ps4zb404ic5pgb171k4bi3mv9p6k8gv59s";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig glib ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://ctpl.tuxfamily.org/;
|
||||||
|
description = "Template engine library written in C";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.lethalman ];
|
||||||
|
};
|
||||||
|
}
|
@ -6113,6 +6113,8 @@ let
|
|||||||
|
|
||||||
ctpp2 = callPackage ../development/libraries/ctpp2 { };
|
ctpp2 = callPackage ../development/libraries/ctpp2 { };
|
||||||
|
|
||||||
|
ctpl = callPackage ../development/libraries/ctpl { };
|
||||||
|
|
||||||
cpp-netlib = callPackage ../development/libraries/cpp-netlib { };
|
cpp-netlib = callPackage ../development/libraries/cpp-netlib { };
|
||||||
|
|
||||||
cppunit = callPackage ../development/libraries/cppunit { };
|
cppunit = callPackage ../development/libraries/cppunit { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user