about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/freesweep/default.nix
blob: 8add760f930b74d2170cd79917d67f193036fbc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ fetchFromGitHub, fetchpatch, 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 = "A 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;
  };
}