diff options
Diffstat (limited to '')
-rw-r--r-- | packages/lampray.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/lampray.nix b/packages/lampray.nix index e9caa13..527c4b5 100644 --- a/packages/lampray.nix +++ b/packages/lampray.nix @@ -53,10 +53,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Mod manager for gaming on Linux"; homepage = "https://github.com/CHollingworth/Lampray"; - license = with licenses; [ + license = with lib.licenses; [ unlicense mpl20 # bit7z mit # json & pugixml @@ -64,8 +64,8 @@ stdenv.mkDerivation { gpl2Only # l4z ]; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ azahi ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = [ lib.maintainers.azahi ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; mainProgram = "lampray"; }; } |