mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
nautilus-annotations: init at 0.8.4
This commit is contained in:
parent
1656043d53
commit
14546ffc2f
@ -41,6 +41,7 @@ let
|
|||||||
mopidy-beets = callPackage ./mopidy-beets.nix { };
|
mopidy-beets = callPackage ./mopidy-beets.nix { };
|
||||||
mopidy-funkwhale = callPackage ./mopidy-funkwhale.nix { };
|
mopidy-funkwhale = callPackage ./mopidy-funkwhale.nix { };
|
||||||
mopidy-internetarchive = callPackage ./mopidy-internetarchive.nix { };
|
mopidy-internetarchive = callPackage ./mopidy-internetarchive.nix { };
|
||||||
|
nautilus-annotations = callPackage ./nautilus-annotations { };
|
||||||
neuwaita-icon-theme = callPackage ./neuwaita-icon-theme { };
|
neuwaita-icon-theme = callPackage ./neuwaita-icon-theme { };
|
||||||
pop-launcher = callPackage ./pop-launcher.nix { };
|
pop-launcher = callPackage ./pop-launcher.nix { };
|
||||||
pop-launcher-plugin-duckduckgo-bangs =
|
pop-launcher-plugin-duckduckgo-bangs =
|
||||||
|
38
pkgs/nautilus-annotations/default.nix
Normal file
38
pkgs/nautilus-annotations/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ stdenv, lib, fetchgit, glib, gnome, gtksourceview4, autoreconfHook, wrapGAppsHook, pkg-config }:
|
||||||
|
|
||||||
|
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
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtksourceview4
|
||||||
|
];
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user