mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
21 lines
548 B
Nix
21 lines
548 B
Nix
{ stdenv, fetchurl, intltool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pxlib";
|
|
version = "0.6.8";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "1yafwz4z5h30hqvk51wpgbjlmq9f2z2znvfim87ydrfrqfjmi6sz";
|
|
};
|
|
|
|
nativeBuildInputs = [ intltool ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library to read and write Paradox files";
|
|
homepage = "http://pxlib.sourceforge.net/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.winpat ];
|
|
};
|
|
}
|