Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
681 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
SDL,
SDL_mixer,
fetchurl,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "barrage";
version = "1.0.7";
src = fetchurl {
url = "mirror://sourceforge/lgames/barrage-${finalAttrs.version}.tar.gz";
hash = "sha256-cGYrG7A4Ffh51KyR+UpeWu7A40eqxI8g4LefBIs18kg=";
};
buildInputs = [
SDL
SDL_mixer
];
hardeningDisable = [ "format" ];
meta = {
homepage = "https://lgames.sourceforge.io/Barrage/";
description = "Destructive action game";
license = with lib.licenses; [ gpl2Plus ];
mainProgram = "barrage";
maintainers = [ ];
inherit (SDL.meta) platforms;
broken = stdenv.hostPlatform.isDarwin;
};
})