2021-11-07 08:19:12 +00:00
|
|
|
{ fetchFromGitHub, fetchpatch, ncurses, lib, stdenv,
|
2017-11-24 00:24:19 +00:00
|
|
|
updateAutotoolsGnuConfigScriptsHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "freesweep";
|
2022-06-29 13:20:35 +00:00
|
|
|
version = "1.0.2";
|
2017-11-24 00:24:19 +00:00
|
|
|
|
2018-11-15 06:48:39 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rwestlund";
|
|
|
|
repo = "freesweep";
|
|
|
|
rev = "v${version}";
|
2022-06-29 13:20:35 +00:00
|
|
|
hash = "sha256-iuu81yHbNrjdPsimBrPK58PJ0d8i3ySM7rFUG/d8NJM";
|
2017-11-24 00:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ];
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlags="$configureFlags --with-prefsdir=$out/share"
|
|
|
|
'';
|
|
|
|
|
2022-06-29 13:35:07 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-11-24 00:24:19 +00:00
|
|
|
installPhase = ''
|
|
|
|
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
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-24 00:24:19 +00:00
|
|
|
description = "A console minesweeper-style game written in C for Unix-like systems";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/rwestlund/freesweep";
|
2017-11-24 00:24:19 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ kierdavis ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|