mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
Adding a pgf command line tool.
This commit is contained in:
parent
f6856be9ee
commit
442148e20a
32
pkgs/tools/graphics/pgf/default.nix
Normal file
32
pkgs/tools/graphics/pgf/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
|
@ -1430,6 +1430,8 @@ let
|
|||
|
||||
partimage = callPackage ../tools/backup/partimage { };
|
||||
|
||||
pgf_graphics = callPackage ../tools/graphics/pgf { };
|
||||
|
||||
pigz = callPackage ../tools/compression/pigz { };
|
||||
|
||||
pxz = callPackage ../tools/compression/pxz { };
|
||||
|
|
Loading…
Reference in a new issue