nixpkgs/pkgs/applications/misc/guake/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

2018-04-14 22:34:35 +00:00
{ stdenv, fetchFromGitHub, python3, gettext, gobjectIntrospection, wrapGAppsHook, glibcLocales
2018-04-09 11:46:46 +00:00
, gtk3, keybinder3, libnotify, libutempter, vte }:
let
version = "3.2.1";
2018-04-09 11:46:46 +00:00
in python3.pkgs.buildPythonApplication rec {
name = "guake-${version}";
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;
sha256 = "0qzrkmjizpc3kirvhml62wya1sr3pbig25nfcrfhk1hhr3jxq17s";
};
2018-04-09 11:46:46 +00:00
nativeBuildInputs = [ gettext gobjectIntrospection wrapGAppsHook python3.pkgs.pip glibcLocales ];
2018-04-09 11:46:46 +00:00
buildInputs = [ gtk3 keybinder3 libnotify python3 vte ];
2018-04-09 11:46:46 +00:00
propagatedBuildInputs = with python3.pkgs; [ dbus-python pbr pycairo pygobject3 ];
2018-04-09 11:46:46 +00:00
LC_ALL = "en_US.UTF-8"; # fixes weird encoding error, see https://github.com/NixOS/nixpkgs/pull/38642#issuecomment-379727699
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=$(out)"
];
2018-04-09 11:46:46 +00:00
preFixup = ''
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ libutempter ]}")
'';
2018-04-09 11:46:46 +00:00
meta = with stdenv.lib; {
description = "Drop-down terminal for GNOME";
homepage = http://guake-project.org;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.msteen ];
};
}