mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
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:
parent
e3c6d33017
commit
e1854c33b2
@ -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: {
|
||||||
|
Loading…
Reference in New Issue
Block a user