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