Merge pull request #5561 from rycee/package/unpaper
Add package 'unpaper'.
This commit is contained in:
commit
7af2eee472
20
pkgs/tools/graphics/unpaper/default.nix
Normal file
20
pkgs/tools/graphics/unpaper/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, libav, libxslt }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "unpaper-${version}";
|
||||||
|
version = "6.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.flameeyes.eu/files/${name}.tar.xz";
|
||||||
|
sha256 = "0c5rbkxbmy9k8vxjh4cv0bgnqd3wqc99yzw215vkyjslvbsq8z13";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig libav libxslt ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://www.flameeyes.eu/projects/unpaper;
|
||||||
|
description = "Post-processing tool for scanned sheets of paper";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.rycee ];
|
||||||
|
};
|
||||||
|
}
|
@ -11116,6 +11116,8 @@ let
|
|||||||
enableX11 = config.unison.enableX11 or true;
|
enableX11 = config.unison.enableX11 or true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
unpaper = callPackage ../tools/graphics/unpaper { };
|
||||||
|
|
||||||
uucp = callPackage ../tools/misc/uucp { };
|
uucp = callPackage ../tools/misc/uucp { };
|
||||||
|
|
||||||
uvccapture = callPackage ../applications/video/uvccapture { };
|
uvccapture = callPackage ../applications/video/uvccapture { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user