3
0
Fork 0
forked from mirrors/nixpkgs

Add potrace-1.11, a tool for tracing bitmaps

This commit is contained in:
Pascal Wittmann 2014-04-26 10:20:37 +02:00
parent d733b49385
commit 8b0d0e3601
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, zlib }:
let version = "1.11"; in
stdenv.mkDerivation {
name = "potrace-${version}";
src = fetchurl {
url = "http://potrace.sourceforge.net/download/potrace-${version}.tar.gz";
sha256 = "1bbyl7jgigawmwc8r14znv8lb6lrcxh8zpvynrl6s800dr4yp9as";
};
buildInputs = [ zlib ];
meta = {
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.linux;
maintainers = [ stdenv.lib.maintainers.pSub ];
license = "GPL2";
};
}

View file

@ -8997,6 +8997,8 @@ let
inherit (xorg) libXpm;
};
potrace = callPackage ../applications/graphics/potrace {};
pqiv = callPackage ../applications/graphics/pqiv { };
qiv = callPackage ../applications/graphics/qiv { };