2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-05-16 08:00:30 +01:00
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
2021-01-17 02:21:50 +00:00
|
|
|
, pkg-config
|
2020-05-16 08:00:30 +01:00
|
|
|
, gettext
|
|
|
|
, itstool
|
|
|
|
, python3
|
2024-03-02 23:42:36 +00:00
|
|
|
, wrapGAppsHook4
|
2020-05-16 08:00:30 +01:00
|
|
|
, cairo
|
|
|
|
, gdk-pixbuf
|
|
|
|
, colord
|
|
|
|
, glib
|
2024-03-02 23:42:36 +00:00
|
|
|
, libadwaita
|
|
|
|
, gtk4
|
2020-05-16 08:00:30 +01:00
|
|
|
, gusb
|
|
|
|
, packagekit
|
|
|
|
, libwebp
|
|
|
|
, libxml2
|
|
|
|
, sane-backends
|
|
|
|
, vala
|
2021-05-07 22:18:14 +01:00
|
|
|
, gnome
|
2020-05-16 08:00:30 +01:00
|
|
|
, gobject-introspection
|
|
|
|
}:
|
2015-03-30 23:45:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "simple-scan";
|
2024-03-02 23:42:36 +00:00
|
|
|
version = "46.0";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-20 23:56:55 +01:00
|
|
|
url = "mirror://gnome/sources/simple-scan/${lib.versions.major version}/simple-scan-${version}.tar.xz";
|
2024-03-02 23:42:36 +00:00
|
|
|
hash = "sha256-wW5lkBQv5WO+UUMSKzu7U/awCn2p2VL2HEf6Jve08Kk=";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2017-12-13 09:41:42 +00:00
|
|
|
nativeBuildInputs = [
|
2020-05-16 08:00:30 +01:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
gettext
|
|
|
|
itstool
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
2020-05-16 08:00:30 +01:00
|
|
|
python3
|
2024-03-02 23:42:36 +00:00
|
|
|
wrapGAppsHook4
|
2020-05-16 08:00:30 +01:00
|
|
|
libxml2
|
|
|
|
gobject-introspection # For setup hook
|
2022-04-20 04:23:22 +01:00
|
|
|
vala
|
2020-05-16 08:00:30 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cairo
|
|
|
|
gdk-pixbuf
|
|
|
|
colord
|
|
|
|
glib
|
|
|
|
gusb
|
2024-03-02 23:42:36 +00:00
|
|
|
libadwaita
|
|
|
|
gtk4
|
2020-05-16 08:00:30 +01:00
|
|
|
libwebp
|
|
|
|
packagekit
|
|
|
|
sane-backends
|
2017-12-13 09:41:42 +00:00
|
|
|
];
|
2015-08-19 20:57:18 +01:00
|
|
|
|
2017-10-04 22:50:14 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs data/meson_compile_gschema.py
|
2016-05-17 05:49:28 +01:00
|
|
|
'';
|
|
|
|
|
2015-08-19 20:57:18 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2018-09-05 01:52:30 +01:00
|
|
|
passthru = {
|
2021-05-07 22:18:14 +01:00
|
|
|
updateScript = gnome.updateScript {
|
2018-09-05 01:52:30 +01:00
|
|
|
packageName = "simple-scan";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-03-30 23:45:06 +01:00
|
|
|
description = "Simple scanning utility";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "simple-scan";
|
2015-03-30 23:45:06 +01:00
|
|
|
longDescription = ''
|
|
|
|
A really easy way to scan both documents and photos. You can crop out the
|
|
|
|
bad parts of a photo and rotate it if it is the wrong way round. You can
|
|
|
|
print your scans, export them to pdf, or save them in a range of image
|
|
|
|
formats. Basically a frontend for SANE - which is the same backend as
|
|
|
|
XSANE uses. This means that all existing scanners will work and the
|
|
|
|
interface is well tested.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gitlab.gnome.org/GNOME/simple-scan";
|
2024-10-04 20:35:12 +01:00
|
|
|
changelog = "https://gitlab.gnome.org/GNOME/simple-scan/-/blob/${version}/NEWS?ref_type=tags";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2020-04-01 13:40:51 +01:00
|
|
|
maintainers = teams.gnome.members;
|
2015-09-14 09:20:16 +01:00
|
|
|
platforms = platforms.linux;
|
2015-03-30 23:45:06 +01:00
|
|
|
};
|
|
|
|
}
|