mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
28 lines
809 B
Nix
28 lines
809 B
Nix
{ 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 ];
|
|
};
|
|
}
|