nixpkgs/pkgs/applications/graphics/sane/frontends.nix

30 lines
886 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, sane-backends, libX11, gtk2, pkg-config, libusb-compat-0_1 ? null }:
stdenv.mkDerivation rec {
pname = "sane-frontends";
2017-09-10 07:45:41 +00:00
version = "1.0.14";
src = fetchurl {
url = "https://alioth-archive.debian.org/releases/sane/${pname}/${version}/${pname}-${version}.tar.gz";
2016-09-06 00:30:54 +00:00
sha256 = "1ad4zr7rcxpda8yzvfkq1rfjgx9nl6lan5a628wvpdbh3fn9v0z7";
};
preConfigure = ''
sed -e '/SANE_CAP_ALWAYS_SETTABLE/d' -i src/gtkglue.c
'';
2017-09-10 07:45:41 +00:00
buildInputs = [ sane-backends libX11 gtk2 ]
2021-01-15 13:21:58 +00:00
++ lib.optional (libusb-compat-0_1 != null) libusb-compat-0_1;
nativeBuildInputs = [ pkg-config ];
2017-09-10 07:45:41 +00:00
enableParallelBuilding = true;
meta = with lib; {
2017-09-10 07:45:41 +00:00
description = "Scanner Access Now Easy";
homepage = "http://www.sane-project.org/";
2017-09-10 07:45:41 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ peti ];
platforms = platforms.linux;
};
}