nixpkgs/pkgs/tools/misc/nautilus-open-any-terminal/default.nix
2023-01-08 16:23:43 +01:00

63 lines
1.3 KiB
Nix

{ lib
, pkg-config
, dbus
, dconf
, fetchFromGitHub
, glib
, gnome
, gobject-introspection
, gsettings-desktop-schemas
, gtk3
, python3
, substituteAll
, wrapGAppsHook
}:
python3.pkgs.buildPythonPackage rec {
pname = "nautilus-open-any-terminal";
version = "0.4.0";
src = fetchFromGitHub {
owner = "Stunkymonkey";
repo = pname;
rev = version;
sha256 = "sha256-EAI60Mw+OTPfjOS6lkGMul7QvTR7NXyNfevWY2JP1yI=";
};
patches = [ ./hardcode-gsettings.patch ];
nativeBuildInputs = [
glib
gobject-introspection
pkg-config
wrapGAppsHook
];
buildInputs = [
dbus
dconf
gnome.nautilus
gnome.nautilus-python
gsettings-desktop-schemas
gtk3
python3.pkgs.pygobject3
];
postPatch = ''
substituteInPlace nautilus_open_any_terminal/open_any_terminal_extension.py \
--subst-var-by gsettings_path ${glib.makeSchemaPath "$out" "$name"}
'';
postInstall = ''
glib-compile-schemas "$out/share/glib-2.0/schemas"
'';
meta = with lib; {
description = "Extension for nautilus, which adds an context-entry for opening other terminal-emulators then `gnome-terminal`";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ stunkymonkey ];
homepage = "https://github.com/Stunkymonkey/nautilus-open-any-terminal";
platforms = platforms.linux;
};
}