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

27 lines
704 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, zlib }:
2015-05-28 17:06:11 +00:00
stdenv.mkDerivation rec {
pname = "potrace";
version = "1.16";
src = fetchurl {
2015-05-28 17:06:11 +00:00
url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz";
sha256 = "1k3sxgjqq0jnpk9xxys05q32sl5hbf1lbk1gmfxcrmpdgnhli0my";
};
2015-05-28 17:06:11 +00:00
configureFlags = [ "--with-libpotrace" ];
2014-06-10 07:24:43 +00:00
buildInputs = [ zlib ];
enableParallelBuilding = true;
doCheck = true;
meta = with 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;
};
}