potrace: 1.15 -> 1.16 (#69748)

* potrace: 1.15 -> 1.16

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/potrace/versions

* potrace: enable tests

Upstream provides a test suite with make check

authored by R. RyanTM and committed by Renaud 03423f46 87ed3e8a

+5 -2
+5 -2
pkgs/applications/graphics/potrace/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "potrace"; 5 - version = "1.15"; 6 7 src = fetchurl { 8 url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz"; 9 - sha256 = "17ajildjp14shsy339xarh1lw1p0k60la08ahl638a73mh23kcx9"; 10 }; 11 12 configureFlags = [ "--with-libpotrace" ]; 13 14 buildInputs = [ zlib ]; 15 16 meta = with stdenv.lib; { 17 homepage = http://potrace.sourceforge.net/;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "potrace"; 5 + version = "1.16"; 6 7 src = fetchurl { 8 url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz"; 9 + sha256 = "1k3sxgjqq0jnpk9xxys05q32sl5hbf1lbk1gmfxcrmpdgnhli0my"; 10 }; 11 12 configureFlags = [ "--with-libpotrace" ]; 13 14 buildInputs = [ zlib ]; 15 + 16 + enableParallelBuilding = true; 17 + doCheck = true; 18 19 meta = with stdenv.lib; { 20 homepage = http://potrace.sourceforge.net/;