cpm-cmake: remove a with lib from meta

This commit is contained in:
Gavin John 2024-11-09 00:57:57 -08:00
parent 612e61fd7a
commit 7d627de21b
No known key found for this signature in database
GPG Key ID: 792E158CDD33C3EE

View File

@ -33,7 +33,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
runHook postInstall
'';
meta = with lib; {
meta = {
homepage = "https://github.com/cpm-cmake/CPM.cmake";
description = "CMake's missing package manager";
longDescription = ''
@ -42,8 +42,8 @@ stdenvNoCC.mkDerivation (finalAttrs: {
CMake's FetchContent module that adds version control, caching, a
simple API and more.
'';
license = licenses.mit;
maintainers = with maintainers; [ pandapip1 ];
platforms = platforms.all;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pandapip1 ];
platforms = lib.platforms.all;
};
})