1 { lib, stdenv, fetchurl, pkg-config, glib }:
3 stdenv.mkDerivation rec {
8 url = "https://download.tuxfamily.org/ctpl/releases/ctpl-${version}.tar.gz";
9 sha256 = "1yr92xv9n6kgyixwg9ps4zb404ic5pgb171k4bi3mv9p6k8gv59s";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ glib ];
16 homepage = "http://ctpl.tuxfamily.org/";
17 description = "Template engine library written in C";
18 platforms = platforms.linux;
20 license = licenses.gpl3Plus;