2014-04-26 10:20:37 +02:00
|
|
|
{ stdenv, fetchurl, zlib }:
|
|
|
|
|
2015-05-28 19:06:11 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "potrace";
|
2019-10-11 13:48:47 +02:00
|
|
|
version = "1.16";
|
2014-04-26 10:20:37 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-05-28 19:06:11 +02:00
|
|
|
url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz";
|
2019-10-11 13:48:47 +02:00
|
|
|
sha256 = "1k3sxgjqq0jnpk9xxys05q32sl5hbf1lbk1gmfxcrmpdgnhli0my";
|
2014-04-26 10:20:37 +02:00
|
|
|
};
|
|
|
|
|
2015-05-28 19:06:11 +02:00
|
|
|
configureFlags = [ "--with-libpotrace" ];
|
2014-06-10 09:24:43 +02:00
|
|
|
|
2014-04-26 10:20:37 +02:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
2019-10-11 13:48:47 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
|
2017-03-19 03:11:39 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-04-26 10:20:37 +02:00
|
|
|
homepage = http://potrace.sourceforge.net/;
|
|
|
|
description = "A tool for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image";
|
2017-03-19 03:11:39 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.pSub ];
|
|
|
|
license = licenses.gpl2;
|
2014-04-26 10:20:37 +02:00
|
|
|
};
|
|
|
|
}
|