about summary refs log tree commit diff
path: root/pkgs/games/freesweep
diff options
context:
space:
mode:
authorDaniel Nagy <danielnagy@posteo.de>2022-10-14 10:56:16 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-12-26 20:52:34 +0100
commit28e6c4ce1562d8fabd1660fed662a55fd2b736ef (patch)
treeb9ffb5ae79a5e669c5fb5e3d1a85df3e080e3228 /pkgs/games/freesweep
parentf89c828186a999b475fbd31560c70cd9b1be3e26 (diff)
freesweep: small cleanup
Diffstat (limited to 'pkgs/games/freesweep')
-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
   '';