depot/third_party/nixpkgs/pkgs/tools/graphics/unpaper/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
621 B
Nix

{ lib, stdenv, fetchurl, pkg-config, libav, libxslt }:
stdenv.mkDerivation rec {
pname = "unpaper";
version = "6.1";
src = fetchurl {
url = "https://www.flameeyes.eu/files/${pname}-${version}.tar.xz";
sha256 = "0c5rbkxbmy9k8vxjh4cv0bgnqd3wqc99yzw215vkyjslvbsq8z13";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libav libxslt ];
meta = with lib; {
homepage = "https://www.flameeyes.eu/projects/unpaper";
description = "Post-processing tool for scanned sheets of paper";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}