2015-01-23 09:26:00 +00:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libtool, dos2unix }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
version = "6.14.12";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "libpgf";
|
|
|
|
inherit version;
|
2015-01-23 09:26:00 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libpgf/libpgf-src-${version}.tar.gz";
|
|
|
|
sha256 = "1ssqjbh6l5jc04f67n47m9bqcigl46c6lgyabyi6cabnh1frk9dx";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ autoconf automake libtool dos2unix ];
|
|
|
|
|
|
|
|
preConfigure = "dos2unix configure.ac; sh autogen.sh";
|
|
|
|
|
|
|
|
# configureFlags = optional static "--enable-static --disable-shared";
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.libpgf.org/";
|
2015-01-23 09:26:00 +00:00
|
|
|
description = "Progressive Graphics Format";
|
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2015-01-23 09:26:00 +00:00
|
|
|
};
|
|
|
|
}
|