nixpkgs/pkgs/by-name/bl/blockattack/package.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

76 lines
1.3 KiB
Nix

{
lib,
SDL2,
SDL2_image,
SDL2_mixer,
SDL2_ttf,
boost,
cmake,
fetchFromGitHub,
gettext,
gitUpdater,
ninja,
physfs,
pkg-config,
stdenv,
zip,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "blockattack";
version = "2.9.0";
src = fetchFromGitHub {
owner = "blockattack";
repo = "blockattack-game";
rev = "v${finalAttrs.version}";
hash = "sha256-6mPj6A7mYm4CXkSSemNPn1CPkd7+01yr8KvCBM3a5po=";
};
nativeBuildInputs = [
SDL2
cmake
ninja
pkg-config
gettext
zip
];
buildInputs = [
SDL2
SDL2_image
SDL2_mixer
SDL2_ttf
SDL2_ttf
boost
physfs
];
outputs = [
"out"
"man"
];
strictDeps = true;
preConfigure = ''
patchShebangs packdata.sh source/misc/translation/*.sh
chmod +x ./packdata.sh
./packdata.sh
'';
passthru = {
updateScript = gitUpdater { };
};
meta = {
homepage = "https://blockattack.net/";
description = "Open source clone of Panel de Pon (aka Tetris Attack)";
broken = stdenv.isDarwin;
changelog = "https://github.com/blockattack/blockattack-game/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = with lib.licenses; [ gpl2Plus ];
mainProgram = "blockattack";
maintainers = with lib.maintainers; [ AndersonTorres ];
inherit (SDL2.meta) platforms;
};
})