singularity: remove with statements

This is a generic meta, so it doesn't fall into the "simple" pattern as I see it.
This commit is contained in:
Philip Taron 2024-08-16 10:32:10 -07:00
parent e3c6d33017
commit e1854c33b2
No known key found for this signature in database

View File

@ -326,26 +326,23 @@ in
''} ''}
''; '';
meta = meta = {
with lib; description = "Application containers for linux" + extraDescription;
{ longDescription = ''
description = "Application containers for linux" + extraDescription; Singularity (the upstream) renamed themselves to Apptainer
longDescription = '' to distinguish themselves from a fork made by Sylabs Inc.. See
Singularity (the upstream) renamed themselves to Apptainer
to distinguish themselves from a fork made by Sylabs Inc.. See
https://sylabs.io/2021/05/singularity-community-edition https://sylabs.io/2021/05/singularity-community-edition
https://apptainer.org/news/community-announcement-20211130 https://apptainer.org/news/community-announcement-20211130
''; '';
license = licenses.bsd3; license = lib.licenses.bsd3;
platforms = platforms.linux; platforms = lib.platforms.linux;
maintainers = with maintainers; [ maintainers = with lib.maintainers; [
jbedo jbedo
ShamrockLee ShamrockLee
]; ];
mainProgram = projectName; mainProgram = projectName;
} } // extraMeta;
// extraMeta;
}).overrideAttrs }).overrideAttrs
( (
finalAttrs: prevAttrs: { finalAttrs: prevAttrs: {