mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
sauerbraten: format with nixfmt
This commit is contained in:
parent
c313102454
commit
214ef50a2a
@ -1,13 +1,14 @@
|
|||||||
{ lib
|
{
|
||||||
, stdenv
|
lib,
|
||||||
, fetchzip
|
stdenv,
|
||||||
, SDL2
|
fetchzip,
|
||||||
, SDL2_image
|
SDL2,
|
||||||
, SDL2_mixer
|
SDL2_image,
|
||||||
, zlib
|
SDL2_mixer,
|
||||||
, makeWrapper
|
zlib,
|
||||||
, copyDesktopItems
|
makeWrapper,
|
||||||
, makeDesktopItem
|
copyDesktopItems,
|
||||||
|
makeDesktopItem,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -15,7 +16,9 @@ stdenv.mkDerivation rec {
|
|||||||
version = "2020-12-27";
|
version = "2020-12-27";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "mirror://sourceforge/sauerbraten/sauerbraten_${builtins.replaceStrings [ "-" ] [ "_" ] version}_linux.tar.bz2";
|
url = "mirror://sourceforge/sauerbraten/sauerbraten_${
|
||||||
|
builtins.replaceStrings [ "-" ] [ "_" ] version
|
||||||
|
}_linux.tar.bz2";
|
||||||
sha256 = "0llknzj23vx6f3y452by9c7wlhzclyq4bqi22qd52m3l916z2mn5";
|
sha256 = "0llknzj23vx6f3y452by9c7wlhzclyq4bqi22qd52m3l916z2mn5";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -42,7 +45,11 @@ stdenv.mkDerivation rec {
|
|||||||
icon = "sauerbraten";
|
icon = "sauerbraten";
|
||||||
desktopName = "Sauerbraten";
|
desktopName = "Sauerbraten";
|
||||||
comment = "FPS that uses an improved version of the Cube engine";
|
comment = "FPS that uses an improved version of the Cube engine";
|
||||||
categories = [ "Application" "Game" "ActionGame" ];
|
categories = [
|
||||||
|
"Application"
|
||||||
|
"Game"
|
||||||
|
"ActionGame"
|
||||||
|
];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -67,7 +74,10 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Free multiplayer & singleplayer first person shooter, the successor of the Cube FPS";
|
description = "Free multiplayer & singleplayer first person shooter, the successor of the Cube FPS";
|
||||||
homepage = "http://sauerbraten.org";
|
homepage = "http://sauerbraten.org";
|
||||||
maintainers = with maintainers; [ raskin ajs124 ];
|
maintainers = with maintainers; [
|
||||||
|
raskin
|
||||||
|
ajs124
|
||||||
|
];
|
||||||
mainProgram = "sauerbraten_client";
|
mainProgram = "sauerbraten_client";
|
||||||
hydraPlatforms =
|
hydraPlatforms =
|
||||||
# raskin: tested amd64-linux;
|
# raskin: tested amd64-linux;
|
||||||
|
Loading…
Reference in New Issue
Block a user