nixpkgs/pkgs/games/lgames/barrage/default.nix

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

33 lines
643 B
Nix
Raw Normal View History

2022-04-22 15:18:13 +00:00
{ lib
, stdenv
, fetchurl
, SDL
, SDL_mixer
}:
stdenv.mkDerivation rec {
pname = "barrage";
2023-07-16 18:44:12 +00:00
version = "1.0.7";
2022-04-22 15:18:13 +00:00
src = fetchurl {
url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz";
2023-07-16 18:44:12 +00:00
hash = "sha256-cGYrG7A4Ffh51KyR+UpeWu7A40eqxI8g4LefBIs18kg=";
2022-04-22 15:18:13 +00:00
};
buildInputs = [
SDL
SDL_mixer
];
hardeningDisable = [ "format" ];
meta = with lib; {
homepage = "https://lgames.sourceforge.io/Barrage/";
description = "A destructive action game";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
inherit (SDL.meta) platforms;
broken = stdenv.isDarwin;
2022-04-22 15:18:13 +00:00
};
}