barrage: init at 1.0.5

This commit is contained in:
AndersonTorres 2022-04-22 12:18:13 -03:00
parent 34158db516
commit ae841fd9ab
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, stdenv
, fetchurl
, SDL
, SDL_mixer
}:
stdenv.mkDerivation rec {
pname = "barrage";
version = "1.0.5";
src = fetchurl {
url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz";
hash = "sha256-p4iXq2qM9tU9QJO7irriBN36OiLFyrnnYiDkmH3naQQ=";
};
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;
};
}

View file

@ -31103,6 +31103,8 @@ with pkgs;
### GAMES/LGAMES
barrage = callPackage ../games/lgames/barrage { };
lbreakout2 = callPackage ../games/lgames/lbreakout2 { };
lbreakouthd = callPackage ../games/lgames/lbreakouthd { };