1184855452
* guake: 3.4.0 -> 3.5.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/guake/versions * guake: remove unneeded postPatch
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, python3, gettext, gobject-introspection, wrapGAppsHook, glibcLocales
|
|
, gtk3, keybinder3, libnotify, libutempter, vte }:
|
|
|
|
let
|
|
version = "3.5.0";
|
|
in python3.pkgs.buildPythonApplication rec {
|
|
name = "guake-${version}";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Guake";
|
|
repo = "guake";
|
|
rev = version;
|
|
sha256 = "0fz0gciw5fpxrp6yyji27l7q8c0r9ljsq6vw584mr70bcl1gzjqx";
|
|
};
|
|
|
|
# Strict deps breaks guake
|
|
# See https://github.com/NixOS/nixpkgs/issues/59930
|
|
# and https://github.com/NixOS/nixpkgs/issues/56943
|
|
strictDeps = false;
|
|
|
|
nativeBuildInputs = [ gettext gobject-introspection wrapGAppsHook python3.pkgs.pip glibcLocales ];
|
|
|
|
buildInputs = [ gtk3 keybinder3 libnotify python3 vte ];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ dbus-python pbr pycairo pygobject3 ];
|
|
|
|
LC_ALL = "en_US.UTF-8"; # fixes weird encoding error, see https://github.com/NixOS/nixpkgs/pull/38642#issuecomment-379727699
|
|
|
|
PBR_VERSION = version; # pbr needs either .git directory, sdist, or env var
|
|
|
|
makeFlags = [
|
|
"prefix=$(out)"
|
|
];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ libutempter ]}")
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Drop-down terminal for GNOME";
|
|
homepage = http://guake-project.org;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.msteen ];
|
|
};
|
|
}
|