2023-01-28 18:02:47 +01:00
|
|
|
{ callPackage
|
|
|
|
, fetchFromGitHub
|
2023-01-28 18:02:48 +01:00
|
|
|
, nixos
|
2023-01-28 18:02:47 +01:00
|
|
|
, conmon
|
|
|
|
}:
|
2023-01-28 18:02:48 +01:00
|
|
|
let
|
2023-01-28 18:02:47 +01:00
|
|
|
apptainer = callPackage
|
|
|
|
(import ./generic.nix rec {
|
|
|
|
pname = "apptainer";
|
2023-04-04 18:39:03 +02:00
|
|
|
version = "1.1.7";
|
2023-01-28 18:02:47 +01:00
|
|
|
projectName = "apptainer";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "apptainer";
|
|
|
|
repo = "apptainer";
|
|
|
|
rev = "v${version}";
|
2023-04-04 18:39:03 +02:00
|
|
|
hash = "sha256-3F8qwP27IXcnnEYMnLzkCOxQDx7yej6QIZ40Wb5pk34=";
|
2023-01-28 18:02:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Update by running
|
|
|
|
# nix-prefetch -E "{ sha256 }: ((import ./. { }).apptainer.override { vendorHash = sha256; }).go-modules"
|
|
|
|
# at the root directory of the Nixpkgs repository
|
2023-04-04 18:39:03 +02:00
|
|
|
vendorHash = "sha256-PfFubgR/W1WBXIsRO+Kg7hA6ebeAcRiJlTlAZbnl19A=";
|
2023-01-28 18:02:47 +01:00
|
|
|
|
|
|
|
extraDescription = " (previously known as Singularity)";
|
|
|
|
extraMeta.homepage = "https://apptainer.org";
|
|
|
|
})
|
|
|
|
{
|
|
|
|
# Apptainer doesn't depend on conmon
|
|
|
|
conmon = null;
|
|
|
|
|
2023-02-14 10:22:39 +01:00
|
|
|
# Apptainer builders require explicit --with-suid / --without-suid flag
|
|
|
|
# when building on a system with disabled unprivileged namespace.
|
|
|
|
# See https://github.com/NixOS/nixpkgs/pull/215690#issuecomment-1426954601
|
|
|
|
defaultToSuid = null;
|
2023-01-28 18:02:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
singularity = callPackage
|
|
|
|
(import ./generic.nix rec {
|
|
|
|
pname = "singularity-ce";
|
2023-04-04 18:39:03 +02:00
|
|
|
version = "3.11.1";
|
2023-01-28 18:02:47 +01:00
|
|
|
projectName = "singularity";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sylabs";
|
|
|
|
repo = "singularity";
|
|
|
|
rev = "v${version}";
|
2023-04-04 18:39:03 +02:00
|
|
|
hash = "sha256-gdgg6VN3Ily+2Remz6dZBhhfWIxyaBa4bIlFcgrA/uY=";
|
2023-01-28 18:02:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Update by running
|
|
|
|
# nix-prefetch -E "{ sha256 }: ((import ./. { }).singularity.override { vendorHash = sha256; }).go-modules"
|
|
|
|
# at the root directory of the Nixpkgs repository
|
2023-04-04 18:39:03 +02:00
|
|
|
vendorHash = "sha256-mBhlH6LSmcJuc6HbU/3Q9ii7vJkW9jcikBWCl8oeMOk=";
|
2023-01-28 18:02:47 +01:00
|
|
|
|
|
|
|
# Do not build conmon from the Git submodule source,
|
|
|
|
# Use Nixpkgs provided version
|
|
|
|
extraConfigureFlags = [
|
|
|
|
"--without-conmon"
|
|
|
|
];
|
|
|
|
|
|
|
|
extraDescription = " (Sylabs Inc's fork of Singularity, a.k.a. SingularityCE)";
|
|
|
|
extraMeta.homepage = "https://sylabs.io/";
|
|
|
|
})
|
|
|
|
{
|
|
|
|
defaultToSuid = true;
|
|
|
|
};
|
2023-01-28 18:02:48 +01:00
|
|
|
|
|
|
|
genOverridenNixos = package: packageName: (nixos {
|
|
|
|
programs.singularity = {
|
|
|
|
enable = true;
|
|
|
|
inherit package;
|
|
|
|
};
|
|
|
|
}).config.programs.singularity.packageOverriden.overrideAttrs (oldAttrs: {
|
|
|
|
meta = oldAttrs.meta // {
|
|
|
|
description = "";
|
|
|
|
longDescription = ''
|
|
|
|
This package produces identical store derivations to `pkgs.${packageName}`
|
|
|
|
overriden and installed by the NixOS module `programs.singularity`
|
|
|
|
with default configuration.
|
|
|
|
|
|
|
|
This is for binary substitutes only. Use pkgs.${packageName} instead.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
});
|
|
|
|
in
|
|
|
|
{
|
|
|
|
inherit apptainer singularity;
|
|
|
|
|
|
|
|
apptainer-overriden-nixos = genOverridenNixos apptainer "apptainer";
|
|
|
|
singularity-overriden-nixos = genOverridenNixos singularity "singularity";
|
2023-01-28 18:02:47 +01:00
|
|
|
}
|