Skip to content

Commit d298873

Browse files
committedJul 30, 2017
qdirstat: fix evaluation
cc @Mic92 @gnidorah
1 parent f0f55ac commit d298873

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎pkgs/applications/misc/qdirstat/default.nix

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
let
55
version = "1.4";
6-
in stdenv.mkDerivation {
6+
in stdenv.mkDerivation rec {
77
name = "qdirstat-${version}";
88

99
src = fetchFromGitHub {
@@ -30,10 +30,10 @@ in stdenv.mkDerivation {
3030
--replace /usr/share $out/share
3131
done
3232
33-
for i in src/MainWindow.cpp src/FileSizeStatsWindow.cpp
34-
do
33+
for i in src/MainWindow.cpp src/FileSizeStatsWindow.cpp
34+
do
3535
substituteInPlace $i \
36-
--replace /usr/bin/xdg-open ${xdg_utils}/bin/xdg-open
36+
--replace /usr/bin/xdg-open ${xdg_utils}/bin/xdg-open
3737
done
3838
for i in src/Cleanup.cpp src/cleanup-config-page.ui
3939
do

1 commit comments

Comments
 (1)

Mic92 commented on Jul 30, 2017

@Mic92
Member

Strange that this did not throw an evaluation error, when building the package.

UPDATE
Ah the problem was:

 homepage = src.meta.homepage;
Please sign in to comment.