f8bd92be32
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. These checks were done: - built on NixOS - /nix/store/69i8y52xjknpcnijqhw1gq8c7r5fj1yb-guake-3.3.0/bin/guake passed the binary check. - /nix/store/69i8y52xjknpcnijqhw1gq8c7r5fj1yb-guake-3.3.0/bin/guake-toggle passed the binary check. - /nix/store/69i8y52xjknpcnijqhw1gq8c7r5fj1yb-guake-3.3.0/bin/..guake-wrapped-wrapped passed the binary check. - /nix/store/69i8y52xjknpcnijqhw1gq8c7r5fj1yb-guake-3.3.0/bin/.guake-wrapped passed the binary check. - /nix/store/69i8y52xjknpcnijqhw1gq8c7r5fj1yb-guake-3.3.0/bin/..guake-toggle-wrapped-wrapped passed the binary check. - /nix/store/69i8y52xjknpcnijqhw1gq8c7r5fj1yb-guake-3.3.0/bin/.guake-toggle-wrapped passed the binary check. - 6 of 6 passed binary check by having a zero exit code. - 0 of 6 passed binary check by having the new version present in output. - found 3.3.0 with grep in /nix/store/69i8y52xjknpcnijqhw1gq8c7r5fj1yb-guake-3.3.0 - directory tree listing: https://gist.github.com/08e53f1dab9dd720370787fafe8d0c02 - du listing: https://gist.github.com/aeb429d5b911c7b6b6ffdf25824eb7bd
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, python3, gettext, gobjectIntrospection, wrapGAppsHook, glibcLocales
|
|
, gtk3, keybinder3, libnotify, libutempter, vte }:
|
|
|
|
let
|
|
version = "3.3.0";
|
|
in python3.pkgs.buildPythonApplication rec {
|
|
name = "guake-${version}";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Guake";
|
|
repo = "guake";
|
|
rev = version;
|
|
sha256 = "1wckzz18rpgacnkynh4rknhhki52agd76i2p80kk9rlrdifqs788";
|
|
};
|
|
|
|
nativeBuildInputs = [ gettext gobjectIntrospection 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
|
|
|
|
postPatch = ''
|
|
# unnecessary /usr/bin/env in Makefile
|
|
# https://github.com/Guake/guake/pull/1285
|
|
substituteInPlace "Makefile" --replace "/usr/bin/env python3" "python3"
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|