92 lines
2.8 KiB
Nix
92 lines
2.8 KiB
Nix
{ callPackage
|
|
, fetchFromGitHub
|
|
, nixos
|
|
, conmon
|
|
}:
|
|
let
|
|
apptainer = callPackage
|
|
(import ./generic.nix rec {
|
|
pname = "apptainer";
|
|
version = "1.2.2";
|
|
projectName = "apptainer";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "apptainer";
|
|
repo = "apptainer";
|
|
rev = "v${version}";
|
|
hash = "sha256-CpNuoG+QykP+HDCyFuIbZKYez5XnYrE75SWFoWu34rg=";
|
|
};
|
|
|
|
# Update by running
|
|
# nix-prefetch -E "{ sha256 }: ((import ./. { }).apptainer.override { vendorHash = sha256; }).goModules"
|
|
# at the root directory of the Nixpkgs repository
|
|
vendorHash = "sha256-Y0gOqg+WGgssXGEYHc9IFwiIpkb3hetlQI89vseAQPc=";
|
|
|
|
extraDescription = " (previously known as Singularity)";
|
|
extraMeta.homepage = "https://apptainer.org";
|
|
})
|
|
{
|
|
# Apptainer doesn't depend on conmon
|
|
conmon = null;
|
|
|
|
# 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;
|
|
};
|
|
|
|
singularity = callPackage
|
|
(import ./generic.nix rec {
|
|
pname = "singularity-ce";
|
|
version = "3.11.4";
|
|
projectName = "singularity";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sylabs";
|
|
repo = "singularity";
|
|
rev = "v${version}";
|
|
hash = "sha256-v8iHbn2OzK/egP2Go76BI74iX8izfy2PM4Uo8LsE8FY=";
|
|
};
|
|
|
|
# Update by running
|
|
# nix-prefetch -E "{ sha256 }: ((import ./. { }).singularity.override { vendorHash = sha256; }).goModules"
|
|
# at the root directory of the Nixpkgs repository
|
|
vendorHash = "sha256-24Hnpq6LRh3JgaiJWCmHfJKoWLxsbceCdJutjPqZsX8=";
|
|
|
|
# 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;
|
|
};
|
|
|
|
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";
|
|
}
|