tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
evopedia: patch the desktop file
Bart Brouns
8 years ago
e2160aff
a57a32e0
+6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
evopedia
default.nix
+6
pkgs/applications/misc/evopedia/default.nix
···
14
buildInputs = [ bzip2 qt4 libX11 ];
15
nativeBuildInputs = [ qmake4Hook ];
16
0
0
0
0
0
0
17
meta = with stdenv.lib; {
18
description = "Offline Wikipedia Viewer";
19
homepage = http://www.evopedia.info;
···
14
buildInputs = [ bzip2 qt4 libX11 ];
15
nativeBuildInputs = [ qmake4Hook ];
16
17
+
postInstall = ''
18
+
# Patch the `evopedia.desktop' file.
19
+
substituteInPlace $out/share/applications/evopedia.desktop \
20
+
--replace '/usr/bin/evopedia' $out/bin/evopedia
21
+
'';
22
+
23
meta = with stdenv.lib; {
24
description = "Offline Wikipedia Viewer";
25
homepage = http://www.evopedia.info;