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