biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / graphics / potrace / default.nix
blobb46c2060ede0e09954f852a21628e5f1e00bb16a
1 { lib, stdenv, fetchurl, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "potrace";
5   version = "1.16";
7   src = fetchurl {
8     url = "https://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz";
9     sha256 = "1k3sxgjqq0jnpk9xxys05q32sl5hbf1lbk1gmfxcrmpdgnhli0my";
10   };
12   configureFlags = [ "--with-libpotrace" ];
14   buildInputs = [ zlib ];
16   enableParallelBuilding = true;
17   doCheck = true;
19   meta = with lib; {
20     homepage = "https://potrace.sourceforge.net/";
21     description = "A tool for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image";
22     platforms = platforms.unix;
23     maintainers = [ maintainers.pSub ];
24     license = licenses.gpl2;
25   };