openmm: 8.2.0 -> 8.3.0

This commit is contained in:
R. Ryantm
2025-06-19 09:07:53 +02:00
committed by Phillip Seeber
parent 7fd0f908b8
commit 8615db5da2
+5 -5
View File
@@ -18,15 +18,15 @@
addDriverRunpath,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "openmm";
version = "8.2.0";
version = "8.3.0";
src = fetchFromGitHub {
owner = "openmm";
repo = "openmm";
rev = version;
hash = "sha256-p0zjr8ONqGK4Vbnhljt16DeyeZ0bR1kE+YdiIlw/1L0=";
rev = finalAttrs.version;
hash = "sha256-wXk5s6OascFWjHs4WpxGU9TcX0gSiOZ3BRusIH1NjpI=";
};
# "This test is stochastic and may occasionally fail". It does.
@@ -128,4 +128,4 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
maintainers = [ maintainers.sheepforce ];
};
}
})