mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
476635afe1
I'd like to reduce the number of Github notifications and review requests I receive.
29 lines
840 B
Nix
29 lines
840 B
Nix
{ lib, stdenv, fetchurl, sane-backends, libX11, gtk2, pkg-config, libusb-compat-0_1 ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sane-frontends";
|
|
version = "1.0.14";
|
|
|
|
src = fetchurl {
|
|
url = "https://alioth-archive.debian.org/releases/sane/${pname}/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1ad4zr7rcxpda8yzvfkq1rfjgx9nl6lan5a628wvpdbh3fn9v0z7";
|
|
};
|
|
|
|
preConfigure = ''
|
|
sed -e '/SANE_CAP_ALWAYS_SETTABLE/d' -i src/gtkglue.c
|
|
'';
|
|
|
|
buildInputs = [ sane-backends libX11 gtk2 ]
|
|
++ lib.optional (libusb-compat-0_1 != null) libusb-compat-0_1;
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Scanner Access Now Easy";
|
|
homepage = "http://www.sane-project.org/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|