chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ba / barrage / package.nix
blobff879e56924a3bf3416aa28d4d76eb7f6e7ef7b1
1 { lib
2 , SDL
3 , SDL_mixer
4 , fetchurl
5 , stdenv
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "barrage";
10   version = "1.0.7";
12   src = fetchurl {
13     url = "mirror://sourceforge/lgames/barrage-${finalAttrs.version}.tar.gz";
14     hash = "sha256-cGYrG7A4Ffh51KyR+UpeWu7A40eqxI8g4LefBIs18kg=";
15   };
17   buildInputs = [
18     SDL
19     SDL_mixer
20   ];
22   hardeningDisable = [ "format" ];
24   meta = {
25     homepage = "https://lgames.sourceforge.io/Barrage/";
26     description = "Destructive action game";
27     license = with lib.licenses; [ gpl2Plus ];
28     mainProgram = "barrage";
29     maintainers = with lib.maintainers; [ AndersonTorres ];
30     inherit (SDL.meta) platforms;
31     broken = stdenv.hostPlatform.isDarwin;
32   };