mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
Add potrace-1.11, a tool for tracing bitmaps
This commit is contained in:
parent
d733b49385
commit
8b0d0e3601
22
pkgs/applications/graphics/potrace/default.nix
Normal file
22
pkgs/applications/graphics/potrace/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -8997,6 +8997,8 @@ let
|
|||
inherit (xorg) libXpm;
|
||||
};
|
||||
|
||||
potrace = callPackage ../applications/graphics/potrace {};
|
||||
|
||||
pqiv = callPackage ../applications/graphics/pqiv { };
|
||||
|
||||
qiv = callPackage ../applications/graphics/qiv { };
|
||||
|
|
Loading…
Reference in a new issue