about summary refs log tree commit diff
path: root/pkgs/games/freesweep/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/freesweep/default.nix')
-rw-r--r--pkgs/games/freesweep/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/games/freesweep/default.nix b/pkgs/games/freesweep/default.nix
index 7fe48d1baf005..feba049a5cf0a 100644
--- a/pkgs/games/freesweep/default.nix
+++ b/pkgs/games/freesweep/default.nix
@@ -1,5 +1,5 @@
-{ fetchFromGitHub, fetchpatch, ncurses, lib, stdenv,
-  updateAutotoolsGnuConfigScriptsHook }:
+{ fetchFromGitHub, fetchpatch, ncurses, lib, stdenv
+, updateAutotoolsGnuConfigScriptsHook, installShellFiles }:
 
 stdenv.mkDerivation rec {
   pname = "freesweep";
@@ -12,12 +12,10 @@ stdenv.mkDerivation rec {
     hash = "sha256-iuu81yHbNrjdPsimBrPK58PJ0d8i3ySM7rFUG/d8NJM";
   };
 
-  nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ];
+  nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook installShellFiles ];
   buildInputs = [ ncurses ];
 
-  preConfigure = ''
-    configureFlags="$configureFlags --with-prefsdir=$out/share"
-  '';
+  configureFlags = [ "--with-prefsdir=$out/share" ];
 
   enableParallelBuilding = true;
 
@@ -25,7 +23,7 @@ stdenv.mkDerivation rec {
     runHook preInstall
     install -D -m 0555 freesweep $out/bin/freesweep
     install -D -m 0444 sweeprc $out/share/sweeprc
-    install -D -m 0444 freesweep.6 $out/share/man/man6/freesweep.6
+    installManPage freesweep.6
     runHook postInstall
   '';