about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/pxlib/default.nix
blob: 6b31ef3257ddd3630ec6d77b3685749cdb2dfe47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, 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 lib; {
    description = "Library to read and write Paradox files";
    homepage = "https://pxlib.sourceforge.net/";
    license = licenses.gpl2;
    platforms = platforms.all;
    maintainers = [ maintainers.winpat ];
  };
}