nixpkgs/pkgs/applications/graphics/potrace/default.nix

24 lines
662 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib }:
2015-05-28 17:06:11 +00:00
stdenv.mkDerivation rec {
name = "potrace-${version}";
version = "1.15";
src = fetchurl {
2015-05-28 17:06:11 +00:00
url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz";
sha256 = "17ajildjp14shsy339xarh1lw1p0k60la08ahl638a73mh23kcx9";
};
2015-05-28 17:06:11 +00:00
configureFlags = [ "--with-libpotrace" ];
2014-06-10 07:24:43 +00:00
buildInputs = [ zlib ];
2017-03-19 02:11:39 +00:00
meta = with stdenv.lib; {
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 02:11:39 +00:00
platforms = platforms.unix;
maintainers = [ maintainers.pSub ];
license = licenses.gpl2;
};
}