1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

guake: clean up

* format with nixpkgs-fmt
* remove glibcLocales hack since we now have C.UTF-8
This commit is contained in:
Jan Tojnar 2019-11-11 23:51:34 +01:00
parent 40f1983f95
commit 374430eff2
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,10 +1,21 @@
{ stdenv, fetchFromGitHub, python3, gettext, gobject-introspection, wrapGAppsHook, glibcLocales { stdenv
, gtk3, keybinder3, libnotify, libutempter, vte, libwnck3 }: , fetchFromGitHub
, python3
, gettext
, gobject-introspection
, wrapGAppsHook
, gtk3
, keybinder3
, libnotify
, libutempter
, vte
, libwnck3
}:
let python3.pkgs.buildPythonApplication rec {
pname = "guake";
version = "3.6.3"; version = "3.6.3";
in python3.pkgs.buildPythonApplication {
name = "guake-${version}";
format = "other"; format = "other";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -19,18 +30,34 @@ in python3.pkgs.buildPythonApplication {
# and https://github.com/NixOS/nixpkgs/issues/56943 # and https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false; strictDeps = false;
nativeBuildInputs = [ gettext gobject-introspection wrapGAppsHook python3.pkgs.pip glibcLocales ]; nativeBuildInputs = [
gettext
gobject-introspection
wrapGAppsHook
python3.pkgs.pip
];
buildInputs = [ gtk3 keybinder3 libnotify python3 vte ]; buildInputs = [
gtk3
keybinder3
libnotify
libwnck3
python3
vte
];
propagatedBuildInputs = with python3.pkgs; [ dbus-python pbr pycairo pygobject3 setuptools libwnck3 ]; propagatedBuildInputs = with python3.pkgs; [
dbus-python
LC_ALL = "en_US.UTF-8"; # fixes weird encoding error, see https://github.com/NixOS/nixpkgs/pull/38642#issuecomment-379727699 pbr
pycairo
pygobject3
setuptools
];
PBR_VERSION = version; # pbr needs either .git directory, sdist, or env var PBR_VERSION = version; # pbr needs either .git directory, sdist, or env var
makeFlags = [ makeFlags = [
"prefix=$(out)" "prefix=${placeholder ''out''}"
]; ];
preFixup = '' preFixup = ''
@ -39,9 +66,9 @@ in python3.pkgs.buildPythonApplication {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Drop-down terminal for GNOME"; description = "Drop-down terminal for GNOME";
homepage = http://guake-project.org; homepage = "http://guake-project.org";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.msteen ]; maintainers = [ maintainers.msteen ];
platforms = platforms.linux;
}; };
} }