barrage: init at 1.0.5
This commit is contained in:
parent
34158db516
commit
ae841fd9ab
2 changed files with 33 additions and 0 deletions
31
pkgs/games/lgames/barrage/default.nix
Normal file
31
pkgs/games/lgames/barrage/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -31103,6 +31103,8 @@ with pkgs;
|
|||
|
||||
### GAMES/LGAMES
|
||||
|
||||
barrage = callPackage ../games/lgames/barrage { };
|
||||
|
||||
lbreakout2 = callPackage ../games/lgames/lbreakout2 { };
|
||||
|
||||
lbreakouthd = callPackage ../games/lgames/lbreakouthd { };
|
||||
|
|
Loading…
Reference in a new issue