linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / ctpl / default.nix
blob69380c2eeeb4c990ade2ba75bbf77e9dae1f9bd6
1 { lib, stdenv, fetchurl, pkg-config, glib }:
3 stdenv.mkDerivation rec {
4   pname = "ctpl";
5   version = "0.3.4";
7   src = fetchurl {
8     url = "https://download.tuxfamily.org/ctpl/releases/ctpl-${version}.tar.gz";
9     sha256 = "1yr92xv9n6kgyixwg9ps4zb404ic5pgb171k4bi3mv9p6k8gv59s";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ glib ];
15   meta = with lib; {
16     homepage = "http://ctpl.tuxfamily.org/";
17     description = "Template engine library written in C";
18     platforms = platforms.linux;
19     maintainers = [ maintainers.lethalman ];
20     license = licenses.gpl3Plus;
21   };