Add metadata for Nanos6

This commit is contained in:
Rodrigo Arias Mallo 2023-10-03 10:00:34 +02:00
parent c724ad2ad3
commit 779247691f
2 changed files with 11 additions and 0 deletions

View File

@ -105,4 +105,12 @@ in
mkdir -p $out/nix-support
echo "export NANOS6_HOME=$out" >> $out/nix-support/setup-hook
'';
meta = with lib; {
homepage = "https://github.com/bsc-pm/nanos6";
description = "Nanos6 runtime for OmpSs-2" +
optionalString (enableDebug) " (with debug symbols)";
platforms = platforms.linux;
license = licenses.gpl3;
};
}

View File

@ -6,4 +6,7 @@ jemalloc.overrideAttrs (old: {
"--enable-stats"
];
hardeningDisable = [ "all" ];
meta = old.meta // {
description = old.meta.description + " (for Nanos6)";
};
})