mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
531e4b80c9
Only acts on one-line dependency lists.
23 lines
617 B
Nix
23 lines
617 B
Nix
{ 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ 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;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.rycee ];
|
|
};
|
|
}
|