Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
meson,
|
|
pkg-config,
|
|
ninja,
|
|
glib,
|
|
gtk3,
|
|
cjs,
|
|
gtksourceview4,
|
|
gobject-introspection,
|
|
libmusicbrainz,
|
|
webkitgtk_4_1,
|
|
clutter-gtk,
|
|
clutter-gst,
|
|
wrapGAppsHook3,
|
|
nemo,
|
|
xreader,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "nemo-preview";
|
|
version = "6.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = "nemo-extensions";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-39hWA4SNuEeaPA6D5mWMHjJDs4hYK7/ZdPkTyskvm5Y=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/nemo-preview";
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook3
|
|
gobject-introspection
|
|
meson
|
|
pkg-config
|
|
glib
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
cjs
|
|
gtksourceview4
|
|
libmusicbrainz
|
|
webkitgtk_4_1
|
|
clutter-gtk
|
|
clutter-gst
|
|
nemo
|
|
xreader
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/linuxmint/nemo-extensions/tree/master/nemo-preview";
|
|
description = "Quick previewer for Nemo, the Cinnamon desktop file manager";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
teams = [ lib.teams.cinnamon ];
|
|
};
|
|
})
|