depot/third_party/nixpkgs/pkgs/applications/graphics/potrace/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
706 B
Nix

{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
pname = "potrace";
version = "1.16";
src = fetchurl {
url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz";
sha256 = "1k3sxgjqq0jnpk9xxys05q32sl5hbf1lbk1gmfxcrmpdgnhli0my";
};
configureFlags = [ "--with-libpotrace" ];
buildInputs = [ zlib ];
enableParallelBuilding = true;
doCheck = true;
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";
platforms = platforms.unix;
maintainers = [ maintainers.pSub ];
license = licenses.gpl2;
};
}