freesweep: small cleanup

This commit is contained in:
Daniel Nagy 2022-10-14 10:56:16 +02:00 committed by Bjørn Forsman
parent f89c828186
commit 28e6c4ce15

View File

@ -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
'';