Skip to content

Commit

Permalink
potrace: 1.13 -> 1.14
Browse files Browse the repository at this point in the history
(cherry picked from commit 56504fc)
  • Loading branch information
ndowens authored and Mic92 committed Mar 25, 2017
1 parent 8ce595f commit 41894d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/applications/graphics/potrace/default.nix
Expand Up @@ -2,22 +2,22 @@

stdenv.mkDerivation rec {
name = "potrace-${version}";
version = "1.13";
version = "1.14";

src = fetchurl {
url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz";
sha256 = "115p2vgyq7p2mf4nidk2x3aa341nvv2v8ml056vbji36df5l6lk2";
sha256 = "0znr9i0ljb818qiwm22zw63g11a4v08gc5xkh0wbdp6g259vcwnv";
};

configureFlags = [ "--with-libpotrace" ];

buildInputs = [ zlib ];

meta = {
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 = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.pSub ];
license = stdenv.lib.licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.pSub ];
license = licenses.gpl2;
};
}

0 comments on commit 41894d5

Please sign in to comment.