about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/pgf/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/pgf/default.nix b/pkgs/tools/graphics/pgf/default.nix
new file mode 100644
index 000000000000..c4fc91edad40
--- /dev/null
+++ b/pkgs/tools/graphics/pgf/default.nix
@@ -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;
+  };
+}