Skip to content

Commit

Permalink
Add missing licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhys-T committed Sep 23, 2024
1 parent ccd61a3 commit d44cf1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions pkgs/bubbros/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ in stdenv.mkDerivation (finalAttrs: let self = finalAttrs.finalPackage; in {
${self.pname} depends on python277 (EOL).
Avoid exposing its server or client to untrusted networks.
''];
license = with lib.licenses; [mit artistic2];
maintainers = [maintainers.Rhys-T];
};
})
3 changes: 2 additions & 1 deletion pkgs/flatzebra/burgerspace.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{stdenv, fetchurl, flatzebra, pkg-config, maintainers}: stdenv.mkDerivation {
{stdenv, lib, fetchurl, flatzebra, pkg-config, maintainers}: stdenv.mkDerivation {
pname = "burgerspace";
version = "1.10.0";
src = fetchurl {
Expand All @@ -16,6 +16,7 @@
meta = {
description = "Hamburger-smashing video game";
homepage = "http://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html";
license = lib.licenses.gpl2Plus;
maintainers = [maintainers.Rhys-T];
};
}
3 changes: 2 additions & 1 deletion pkgs/flatzebra/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{stdenv, fetchurl, SDL2, SDL2_gfx, SDL2_image, SDL2_mixer, SDL2_ttf, pkg-config, maintainers}: stdenv.mkDerivation {
{stdenv, lib, fetchurl, SDL2, SDL2_gfx, SDL2_image, SDL2_mixer, SDL2_ttf, pkg-config, maintainers}: stdenv.mkDerivation {
pname = "flatzebra";
version = "0.2.0";
src = fetchurl {
Expand All @@ -14,6 +14,7 @@
meta = {
description = "Generic game engine for 2D double-buffering animation";
homepage = "http://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html";
license = lib.licenses.gpl2Plus;
maintainers = [maintainers.Rhys-T];
};
}

0 comments on commit d44cf1d

Please sign in to comment.