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

49 lines
1.4 KiB
Nix
Raw Normal View History

2018-04-14 18:34:35 -04:00
{ stdenv, fetchFromGitHub, python3, gettext, gobjectIntrospection, wrapGAppsHook, glibcLocales
2018-04-09 07:46:46 -04:00
, gtk3, keybinder3, libnotify, libutempter, vte }:
let
version = "3.3.0";
2018-04-09 07:46:46 -04:00
in python3.pkgs.buildPythonApplication rec {
name = "guake-${version}";
2018-04-09 07:46:46 -04:00
format = "other";
2018-04-09 07:46:46 -04:00
src = fetchFromGitHub {
owner = "Guake";
repo = "guake";
rev = version;
sha256 = "1wckzz18rpgacnkynh4rknhhki52agd76i2p80kk9rlrdifqs788";
};
2018-04-09 07:46:46 -04:00
nativeBuildInputs = [ gettext gobjectIntrospection wrapGAppsHook python3.pkgs.pip glibcLocales ];
2018-04-09 07:46:46 -04:00
buildInputs = [ gtk3 keybinder3 libnotify python3 vte ];
2018-04-09 07:46:46 -04:00
propagatedBuildInputs = with python3.pkgs; [ dbus-python pbr pycairo pygobject3 ];
2018-04-09 07:46:46 -04:00
LC_ALL = "en_US.UTF-8"; # fixes weird encoding error, see https://github.com/NixOS/nixpkgs/pull/38642#issuecomment-379727699
2018-04-09 07:46:46 -04:00
PBR_VERSION = version; # pbr needs either .git directory, sdist, or env var
2018-05-01 09:38:22 -04:00
postPatch = ''
# unnecessary /usr/bin/env in Makefile
# https://github.com/Guake/guake/pull/1285
substituteInPlace "Makefile" --replace "/usr/bin/env python3" "python3"
'';
2018-04-09 07:46:46 -04:00
makeFlags = [
"prefix=$(out)"
];
2018-04-09 07:46:46 -04:00
preFixup = ''
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ libutempter ]}")
'';
2018-04-09 07:46:46 -04: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 ];
};
}