mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
pxlib: init at 0.6.8
This commit is contained in:
parent
f6d0441bf5
commit
88246c57fc
20
pkgs/development/libraries/pxlib/default.nix
Normal file
20
pkgs/development/libraries/pxlib/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -25878,6 +25878,8 @@ in
|
|||
|
||||
kcli = callPackage ../development/tools/kcli {};
|
||||
|
||||
pxlib = callPackage ../development/libraries/pxlib {};
|
||||
|
||||
unstick = callPackage ../os-specific/linux/unstick {};
|
||||
|
||||
quartus-prime-lite = callPackage ../applications/editors/quartus-prime {};
|
||||
|
|
Loading…
Reference in a new issue