mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
34 lines
907 B
Nix
34 lines
907 B
Nix
{ stdenv, fetchurl, autoconf, automake, libtool, dos2unix, libpgf, freeimage, doxygen }:
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
version = "6.14.12";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "pgf-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libpgf/pgf-console-src-${version}.tar.gz";
|
|
sha256 = "1vfm12cfq3an3xg0679bcwdmjq2x1bbij1iwsmm60hwmrm3zvab0";
|
|
};
|
|
|
|
buildInputs = [ autoconf automake libtool dos2unix libpgf freeimage doxygen ];
|
|
|
|
patchPhase = ''
|
|
sed 1i'#include <inttypes.h>' -i src/PGF.cpp
|
|
sed s/__int64/int64_t/g -i src/PGF.cpp
|
|
'';
|
|
|
|
preConfigure = "dos2unix configure.ac; sh autogen.sh";
|
|
|
|
# configureFlags = optional static "--enable-static --disable-shared";
|
|
|
|
meta = {
|
|
homepage = http://www.libpgf.org/;
|
|
description = "Progressive Graphics Format command line program";
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|