Gaetan Lepage
2025-03-14 21:19:13 +05:30
committed by Masum Reza
parent 305b59e8e2
commit 16bcaeffb2
@@ -46,25 +46,25 @@ let
callPackage
(import ./generic.nix rec {
pname = "singularity-ce";
version = "4.2.2";
version = "4.3.0";
projectName = "singularity";
src = fetchFromGitHub {
owner = "sylabs";
repo = "singularity";
tag = "v${version}";
hash = "sha256-BW+oUZh82m2QDf0tUKRLcPk3mUpkukZkVzSIfXtQwio=";
hash = "sha256-zmrwP5ZAsRz+1zR/VozjBiT+YGJrCnvD3Y7dUsqbQwk=";
};
# Override vendorHash with overrideAttrs.
# See https://nixos.org/manual/nixpkgs/unstable/#buildGoModule-vendorHash
vendorHash = "sha256-ed779LFPL38i/+pGlGIty9I/SvOtjF4/dOAx8zY7Y5E=";
vendorHash = "sha256-Ayp+V8M3PP53ZLEagsxBB/r8Ci0tNIiH9NtbHpX6NmM=";
# Do not build conmon and squashfuse from the Git submodule sources,
# Use Nixpkgs provided version
extraConfigureFlags = [
"--without-conmon"
# Do not build squashfuse from the Git submodule sources, use Nixpkgs provided version
"--without-squashfuse"
# Disable subid as it requires (unavailable?) libsubid headers:
"--without-libsubid"
];
extraDescription = " (Sylabs Inc's fork of Singularity, a.k.a. SingularityCE)";