2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, perl, perlPackages, pxlib }:
|
2020-01-23 10:21:16 +00:00
|
|
|
|
|
|
|
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 ]);
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-01-23 10:21:16 +00:00
|
|
|
|
|
|
|
configureFlags = [ "--with-pxlib=${pxlib.out}" ];
|
|
|
|
|
|
|
|
# https://sourceforge.net/p/pxlib/bugs/12/
|
|
|
|
LDFLAGS = "-lm";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-01-23 10:21:16 +00:00
|
|
|
description = "Program to convert Paradox databases";
|
|
|
|
homepage = "http://pxlib.sourceforge.net/pxview/";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.winpat ];
|
|
|
|
};
|
|
|
|
}
|