mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 21:13:40 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
952 B
Nix
39 lines
952 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses5
|
|
, enableSdl2 ? false, SDL2, SDL2_image, SDL2_sound, SDL2_mixer, SDL2_ttf
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "angband";
|
|
version = "4.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "angband";
|
|
repo = "angband";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-XH2FUTJJaH5TqV2UD1CKKAXE4CRAb6zfg1UQ79a15k0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ ncurses5 ]
|
|
++ lib.optionals enableSdl2 [
|
|
SDL2
|
|
SDL2_image
|
|
SDL2_sound
|
|
SDL2_mixer
|
|
SDL2_ttf
|
|
];
|
|
|
|
configureFlags = lib.optional enableSdl2 "--enable-sdl2";
|
|
|
|
installFlags = [ "bindir=$(out)/bin" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://angband.github.io/angband";
|
|
description = "Single-player roguelike dungeon exploration game";
|
|
mainProgram = "angband";
|
|
maintainers = [ maintainers.kenran ];
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|