nixos-config/pkgs/nautilus-annotations/default.nix

41 lines
857 B
Nix
Raw Normal View History

{ stdenv
, lib
, fetchgit
, glib
, gnome
, gtksourceview4
, autoreconfHook
, wrapGAppsHook
, pkg-config
}:
2022-07-13 12:32:10 +00:00
stdenv.mkDerivation rec {
pname = "nautilus-annotations";
version = "0.8.4";
src = fetchgit {
url = "https://gitlab.gnome.org/madmurphy/nautilus-annotations.git";
rev = version;
sha256 = "sha256-wHM+ny4vhrV1Jyk9L6Qb8D556jntYAPG+ynGZLqpe6Q=";
};
nativeBuildInputs =
[ autoreconfHook glib gnome.nautilus pkg-config wrapGAppsHook ];
2022-07-13 12:32:10 +00:00
buildInputs = [ gtksourceview4 ];
2022-07-13 12:32:10 +00:00
preConfigure = ''
./bootstrap
'';
installFlags = [
"NAUTILUS_EXTENSION_DIR=${placeholder "out"}/lib/nautilus/extensions-3.0"
];
meta = with lib; {
homepage = "https://gitlab.gnome.org/madmurphy/nautilus-annotations";
description = "Nautilus extension that adds back file annotations";
license = licenses.gpl3Only;
};
}