mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
95 lines
2.1 KiB
Nix
95 lines
2.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, glycin-loaders
|
|
, cargo
|
|
, desktop-file-utils
|
|
, jq
|
|
, meson
|
|
, moreutils
|
|
, ninja
|
|
, pkg-config
|
|
, rustc
|
|
, wrapGAppsHook4
|
|
, glib
|
|
, gst_all_1
|
|
, gtk4
|
|
, libadwaita
|
|
, libcamera
|
|
, libseccomp
|
|
, pipewire
|
|
, gnome
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "snapshot";
|
|
version = "47.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/snapshot/${lib.versions.major finalAttrs.version}/snapshot-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-5LFiZ5ryTH6W7m4itH1f8NqW4KD2FtE66xIHxgn4lIM=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix paths in glycin library
|
|
glycin-loaders.passthru.glycinPathsPatch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cargo
|
|
desktop-file-utils
|
|
jq
|
|
meson
|
|
moreutils # sponge is used in postPatch
|
|
ninja
|
|
pkg-config
|
|
rustc
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gst-plugins-rs # for gtk4paintablesink
|
|
gst_all_1.gstreamer
|
|
gtk4
|
|
libadwaita
|
|
libcamera # for the gstreamer plugin
|
|
libseccomp
|
|
pipewire # for device provider
|
|
];
|
|
|
|
postPatch = ''
|
|
# Replace hash of file we patch in vendored glycin.
|
|
jq \
|
|
--arg hash "$(sha256sum vendor/glycin/src/sandbox.rs | cut -d' ' -f 1)" \
|
|
'.files."src/sandbox.rs" = $hash' \
|
|
vendor/glycin/.cargo-checksum.json \
|
|
| sponge vendor/glycin/.cargo-checksum.json
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
# vp8enc preset
|
|
--prefix GST_PRESET_PATH : "${gst_all_1.gst-plugins-good}/share/gstreamer-1.0/presets"
|
|
# See https://gitlab.gnome.org/sophie-h/glycin/-/blob/0.1.beta.2/glycin/src/config.rs#L44
|
|
--prefix XDG_DATA_DIRS : "${glycin-loaders}/share"
|
|
)
|
|
'';
|
|
|
|
passthru.updateScript = gnome.updateScript {
|
|
packageName = "snapshot";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/snapshot";
|
|
description = "Take pictures and videos on your computer, tablet, or phone";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
mainProgram = "snapshot";
|
|
};
|
|
})
|