From e3907717cc7dce19037f9544be499374b07ca798 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 31 Oct 2019 16:38:19 +0100 Subject: [PATCH] bpython: fix build aeb63f40dd11157dc41f1f773abafe6f2666ac16 bumped bpython to 0.18, but it failed to build afterwards, due to the .desktop file being renamed. --- pkgs/development/python-modules/bpython/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/bpython/default.nix b/pkgs/development/python-modules/bpython/default.nix index a828b00822c..a91be0e13dd 100644 --- a/pkgs/development/python-modules/bpython/default.nix +++ b/pkgs/development/python-modules/bpython/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ curtsies greenlet pygments requests urwid ]; postInstall = '' - substituteInPlace "$out/share/applications/bpython.desktop" \ + substituteInPlace "$out/share/applications/org.bpython-interpreter.bpython.desktop" \ --replace "Exec=/usr/bin/bpython" "Exec=$out/bin/bpython" '';