9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
33 lines
973 B
Nix
33 lines
973 B
Nix
{ lib, stdenv, fetchurl, sane-backends, sane-frontends, libX11, gtk2, pkg-config, libpng
|
|
, libusb-compat-0_1 ? null
|
|
, gimpSupport ? false, gimp ? null
|
|
}:
|
|
|
|
assert gimpSupport -> gimp != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xsane-0.999";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.xsane.org/download/${name}.tar.gz";
|
|
sha256 = "0jrb918sfb9jw3vmrz0z7np4q55hgsqqffpixs0ir5nwcwzd50jp";
|
|
};
|
|
|
|
preConfigure = ''
|
|
sed -e '/SANE_CAP_ALWAYS_SETTABLE/d' -i src/xsane-back-gtk.c
|
|
chmod a+rX -R .
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [libpng sane-backends sane-frontends libX11 gtk2 ]
|
|
++ (if libusb-compat-0_1 != null then [libusb-compat-0_1] else [])
|
|
++ lib.optional gimpSupport gimp;
|
|
|
|
meta = {
|
|
homepage = "http://www.sane-project.org/";
|
|
description = "Graphical scanning frontend for sane";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [peti];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|