tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sladeUnstable: avoid `with lib`
Gliczy
9 months ago
ea4ecfe2
e98e87c9
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
games
doom-ports
slade
git.nix
+4
-4
pkgs/games/doom-ports/slade/git.nix
···
69
url = "https://github.com/sirjuddington/SLADE.git";
70
};
71
72
-
meta = with lib; {
73
description = "Doom editor";
74
homepage = "http://slade.mancubus.net/";
75
-
license = licenses.gpl2Only; # https://github.com/sirjuddington/SLADE/issues/1754
76
-
platforms = platforms.linux;
77
-
maintainers = with maintainers; [ ertes ];
78
};
79
}
···
69
url = "https://github.com/sirjuddington/SLADE.git";
70
};
71
72
+
meta = {
73
description = "Doom editor";
74
homepage = "http://slade.mancubus.net/";
75
+
license = lib.licenses.gpl2Only; # https://github.com/sirjuddington/SLADE/issues/1754
76
+
platforms = lib.platforms.linux;
77
+
maintainers = with lib.maintainers; [ ertes ];
78
};
79
}