mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 04:03:04 +00:00
![Silvan Mosberger](/assets/img/avatar_default.png)
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
93 lines
1.9 KiB
Nix
93 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
gettext,
|
|
itstool,
|
|
python3,
|
|
wrapGAppsHook4,
|
|
cairo,
|
|
gdk-pixbuf,
|
|
colord,
|
|
glib,
|
|
libadwaita,
|
|
gtk4,
|
|
gusb,
|
|
packagekit,
|
|
libwebp,
|
|
libxml2,
|
|
sane-backends,
|
|
vala,
|
|
gnome,
|
|
gobject-introspection,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "simple-scan";
|
|
version = "46.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/simple-scan/${lib.versions.major version}/simple-scan-${version}.tar.xz";
|
|
hash = "sha256-wW5lkBQv5WO+UUMSKzu7U/awCn2p2VL2HEf6Jve08Kk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
gettext
|
|
itstool
|
|
pkg-config
|
|
python3
|
|
wrapGAppsHook4
|
|
libxml2
|
|
gobject-introspection # For setup hook
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
gdk-pixbuf
|
|
colord
|
|
glib
|
|
gusb
|
|
libadwaita
|
|
gtk4
|
|
libwebp
|
|
packagekit
|
|
sane-backends
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs data/meson_compile_gschema.py
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "simple-scan";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Simple scanning utility";
|
|
mainProgram = "simple-scan";
|
|
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.
|
|
'';
|
|
homepage = "https://gitlab.gnome.org/GNOME/simple-scan";
|
|
changelog = "https://gitlab.gnome.org/GNOME/simple-scan/-/blob/${version}/NEWS?ref_type=tags";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|