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