mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
redeclipse: fix license info
This commit is contained in:
parent
19de85d818
commit
bb7a367fed
|
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
|
||||||
cp -R -t $out/share/redeclipse/data/ data/*
|
cp -R -t $out/share/redeclipse/data/ data/*
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A first person arena shooter, featuring parkour, impulse boosts, and more.";
|
description = "A first person arena shooter, featuring parkour, impulse boosts, and more.";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Red Eclipse is a fun-filled new take on the first person arena shooter,
|
Red Eclipse is a fun-filled new take on the first person arena shooter,
|
||||||
|
@ -48,10 +48,10 @@ stdenv.mkDerivation rec {
|
||||||
toward balanced gameplay, with a general theme of agility in a variety of
|
toward balanced gameplay, with a general theme of agility in a variety of
|
||||||
environments.
|
environments.
|
||||||
'';
|
'';
|
||||||
homepage = https://www.redeclipse.net;
|
homepage = "https://www.redeclipse.net";
|
||||||
license = with stdenv.lib.licenses; [ zlib cc-by-sa-30 ];
|
license = with licenses; [ licenses.zlib cc-by-sa-30 ];
|
||||||
maintainers = with stdenv.lib.maintainers; [ lambda-11235 ];
|
maintainers = with maintainers; [ lambda-11235 ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
hydraPlatforms = [];
|
hydraPlatforms = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue