Unverified Commit d67d950e authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

sirius: 7.8.0-unstable-2025-07-23 -> 7.9.0 (#451209)

parents d9c78a11 433b75b5
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -51,15 +51,15 @@ assert builtins.elem gpuBackend [
];
assert enablePython -> pythonPackages != null;

stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
  pname = "SIRIUS";
  version = "7.8.0-unstable-2025-07-23";
  version = "7.9.0";

  src = fetchFromGitHub {
    owner = "electronic-structure";
    repo = "SIRIUS";
    rev = "258c8c6543af0350ac002a52fbe18221ea275590";
    hash = "sha256-HHt3iw3muIGz86NmI9p6yuv7jrXoiz/83qTTueU7Lpk=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-/bhY+LCxOikS1at0ONFAhmvfnWhAVHsRQ4GfXJOZbBA=";
  };

  outputs = [
@@ -182,4 +182,4 @@ stdenv.mkDerivation {
    platforms = platforms.linux;
    maintainers = [ maintainers.sheepforce ];
  };
}
})
+4 −4
Original line number Diff line number Diff line
@@ -43,11 +43,11 @@ stdenv.mkDerivation rec {
    (lib.cmakeFeature "CMAKE_CUDA_ARCHITECTURES" cudaPackages.flags.cmakeCudaArchitecturesString)
  ];

  meta = with lib; {
  meta = {
    description = "Application-focused API for memory management on NUMA & GPU architectures";
    homepage = "https://github.com/LLNL/Umpire";
    maintainers = with maintainers; [ sheepforce ];
    license = with licenses; [ mit ];
    platforms = [ "x86_64-linux" ];
    maintainers = with lib.maintainers; [ sheepforce ];
    license = with lib.licenses; [ mit ];
    platforms = lib.platforms.linux;
  };
}