Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl, intltool }: 2 3stdenv.mkDerivation rec { 4 pname = "pxlib"; 5 version = "0.6.8"; 6 src = fetchurl { 7 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; 8 sha256 = "1yafwz4z5h30hqvk51wpgbjlmq9f2z2znvfim87ydrfrqfjmi6sz"; 9 }; 10 11 nativeBuildInputs = [ intltool ]; 12 13 meta = with lib; { 14 description = "Library to read and write Paradox files"; 15 homepage = "https://pxlib.sourceforge.net/"; 16 license = licenses.gpl2; 17 platforms = platforms.all; 18 maintainers = [ maintainers.winpat ]; 19 }; 20}