pxview: init at 0.2.5

This commit is contained in:
Patrick Winter 2020-01-23 11:21:16 +01:00 committed by Dmitry Kalinkin
parent 88246c57fc
commit 9356945f91
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, fetchurl, pkgconfig, perl, perlPackages, pxlib }:
stdenv.mkDerivation rec {
pname = "pxview";
version = "0.2.5";
src = fetchurl {
url = "mirror://sourceforge/pxlib/${pname}_${version}.orig.tar.gz";
sha256 = "1kpdqs6lvnyj02v9fbz1s427yqhgrxp7zw63rzfgiwd4iqp75139";
};
buildInputs = [ pxlib perl ] ++ (with perlPackages; [ libxml_perl ]);
nativeBuildInputs = [ pkgconfig ];
configureFlags = [ "--with-pxlib=${pxlib.out}" ];
# https://sourceforge.net/p/pxlib/bugs/12/
LDFLAGS = "-lm";
hardeningDisable = [ "format" ];
meta = with stdenv.lib; {
description = "Program to convert Paradox databases";
homepage = "http://pxlib.sourceforge.net/pxview/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.winpat ];
};
}

View File

@ -25880,6 +25880,8 @@ in
pxlib = callPackage ../development/libraries/pxlib {};
pxview = callPackage ../development/tools/pxview {};
unstick = callPackage ../os-specific/linux/unstick {};
quartus-prime-lite = callPackage ../applications/editors/quartus-prime {};