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 = "sha256-IRCPx1Z+0hbe6kWRrb/s6OiLH0uxynfDdACSBkTXVr4=";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ glib ];
16 homepage = "http://ctpl.tuxfamily.org/";
17 description = "Template engine library written in C";
19 platforms = platforms.linux;
21 license = licenses.gpl3Plus;