summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-05-01 15:45:29 +0200
committerGitHub <noreply@github.com>2018-05-01 15:45:29 +0200
commita656690fff9775df0fd0c9d160d22e126a7a74a8 (patch)
tree1ee59eb77dc359bd167cdd5e1966a624203a2f53 /pkgs
parent0d2397380fa008cf8516ca0b874f451d515579d4 (diff)
parent6b8c1d20847e688a0b3beafac01aec58e68c9bf6 (diff)
Merge pull request #39774 from r-ryantm/auto-update/guake
guake: 3.2.0 -> 3.2.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/guake/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/applications/misc/guake/default.nix b/pkgs/applications/misc/guake/default.nix
index 17837c6c254e..c34f0e48f3ec 100644
--- a/pkgs/applications/misc/guake/default.nix
+++ b/pkgs/applications/misc/guake/default.nix
@@ -2,7 +2,7 @@
, gtk3, keybinder3, libnotify, libutempter, vte }:
let
- version = "3.2.0";
+ version = "3.2.1";
in python3.pkgs.buildPythonApplication rec {
name = "guake-${version}";
format = "other";
@@ -11,7 +11,7 @@ in python3.pkgs.buildPythonApplication rec {
owner = "Guake";
repo = "guake";
rev = version;
- sha256 = "1qghapg9sslj9fdrl2mnbi10lgqgqa36gdag74wn7as9wak4qc3d";
+ sha256 = "0qzrkmjizpc3kirvhml62wya1sr3pbig25nfcrfhk1hhr3jxq17s";
};
nativeBuildInputs = [ gettext gobjectIntrospection wrapGAppsHook python3.pkgs.pip glibcLocales ];
@@ -24,6 +24,12 @@ in python3.pkgs.buildPythonApplication rec {
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)"
];