ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / ct / ctpl / package.nix
blobd83bd2c456ea1dd0ebc2444d2b1aa5417e488025
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   glib,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "ctpl";
11   version = "0.3.5";
13   src = fetchurl {
14     url = "https://download.tuxfamily.org/ctpl/releases/ctpl-${version}.tar.gz";
15     sha256 = "sha256-IRCPx1Z+0hbe6kWRrb/s6OiLH0uxynfDdACSBkTXVr4=";
16   };
18   nativeBuildInputs = [ pkg-config ];
19   buildInputs = [ glib ];
21   meta = with lib; {
22     homepage = "http://ctpl.tuxfamily.org/";
23     description = "Template engine library written in C";
24     mainProgram = "ctpl";
25     platforms = platforms.linux;
26     maintainers = [ ];
27     license = licenses.gpl3Plus;
28   };