python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / ctpl / default.nix
blob634c2cf44cf412693d00a26153064d8068722761
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 = [ ];
20     license = licenses.gpl3Plus;
21   };