nixpkgs/pkgs/development/libraries/ctpl/default.nix

23 lines
602 B
Nix
Raw Normal View History

2015-10-29 15:57:20 +00:00
{ stdenv, fetchurl, pkgconfig, glib }:
stdenv.mkDerivation rec {
name = "ctpl-${version}";
version = "0.3.4";
src = fetchurl {
url = "https://download.tuxfamily.org/ctpl/releases/ctpl-${version}.tar.gz";
2015-10-29 15:57:20 +00:00
sha256 = "1yr92xv9n6kgyixwg9ps4zb404ic5pgb171k4bi3mv9p6k8gv59s";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib ];
2015-10-29 15:57:20 +00:00
meta = with stdenv.lib; {
homepage = http://ctpl.tuxfamily.org/;
description = "Template engine library written in C";
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
2018-09-30 09:27:21 +00:00
license = licenses.gpl3Plus;
2015-10-29 15:57:20 +00:00
};
}