nixpkgs/pkgs/games/freesweep/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

39 lines
1.0 KiB
Nix

{ fetchFromGitHub, ncurses, lib, stdenv
, updateAutotoolsGnuConfigScriptsHook, installShellFiles }:
stdenv.mkDerivation rec {
pname = "freesweep";
version = "1.0.2";
src = fetchFromGitHub {
owner = "rwestlund";
repo = "freesweep";
rev = "v${version}";
hash = "sha256-iuu81yHbNrjdPsimBrPK58PJ0d8i3ySM7rFUG/d8NJM";
};
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook installShellFiles ];
buildInputs = [ ncurses ];
configureFlags = [ "--with-prefsdir=$out/share" ];
enableParallelBuilding = true;
installPhase = ''
runHook preInstall
install -D -m 0555 freesweep $out/bin/freesweep
install -D -m 0444 sweeprc $out/share/sweeprc
installManPage freesweep.6
runHook postInstall
'';
meta = with lib; {
description = "Console minesweeper-style game written in C for Unix-like systems";
mainProgram = "freesweep";
homepage = "https://github.com/rwestlund/freesweep";
license = licenses.gpl2;
maintainers = with maintainers; [ kierdavis ];
platforms = platforms.unix;
};
}