nixpkgs/pkgs/applications/terminal-emulators/guake/default.nix

77 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, python3
, glibcLocales
, gobject-introspection
, wrapGAppsHook
, gtk3
, keybinder3
, libnotify
, libutempter
, vte
2021-06-23 18:22:04 +00:00
, libwnck
}:
python3.pkgs.buildPythonApplication rec {
pname = "guake";
2019-05-16 16:39:47 +00:00
version = "3.6.3";
2018-04-09 11:46:46 +00:00
format = "other";
2018-04-09 11:46:46 +00:00
src = fetchFromGitHub {
owner = "Guake";
repo = "guake";
rev = version;
2019-05-16 16:39:47 +00:00
sha256 = "13ipnmqcyixpa6qv83m0f91za4kar14s5jpib68b32z65x1h0j3b";
};
# Strict deps breaks guake
# See https://github.com/NixOS/nixpkgs/issues/59930
# and https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
nativeBuildInputs = [
gobject-introspection
wrapGAppsHook
python3.pkgs.pip
];
buildInputs = [
glibcLocales
gtk3
keybinder3
libnotify
2021-06-23 18:22:04 +00:00
libwnck
python3
vte
];
makeWrapperArgs = [ "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive" ];
propagatedBuildInputs = with python3.pkgs; [
dbus-python
pbr
pycairo
pygobject3
setuptools
];
2018-04-09 11:46:46 +00:00
PBR_VERSION = version; # pbr needs either .git directory, sdist, or env var
2018-04-09 11:46:46 +00:00
makeFlags = [
"prefix=${placeholder "out"}"
];
2018-04-09 11:46:46 +00:00
preFixup = ''
2021-01-15 13:21:58 +00:00
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libutempter ]}")
'';
meta = with lib; {
description = "Drop-down terminal for GNOME";
homepage = "http://guake-project.org";
license = licenses.gpl2;
maintainers = [ maintainers.msteen ];
platforms = platforms.linux;
};
}