summary refs log tree commit diff
path: root/pkgs/development/libraries/physics
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2021-11-13 22:41:51 +0000
committerGitHub <noreply@github.com>2021-11-13 22:41:51 +0000
commit83013a6a33f3b9d4298aa6abb93422dde04163d9 (patch)
tree516548e107d0f5b4a95ad33b6a7a6cc94605949c /pkgs/development/libraries/physics
parent9cd50375c4486c0d85363412ca948e4377747419 (diff)
parent4e7c9c1eb8359c788b63514ba5cb831c9e64031f (diff)
downloadnixpkgs-83013a6a33f3b9d4298aa6abb93422dde04163d9.tar
nixpkgs-83013a6a33f3b9d4298aa6abb93422dde04163d9.tar.gz
nixpkgs-83013a6a33f3b9d4298aa6abb93422dde04163d9.tar.bz2
nixpkgs-83013a6a33f3b9d4298aa6abb93422dde04163d9.tar.lz
nixpkgs-83013a6a33f3b9d4298aa6abb93422dde04163d9.tar.xz
nixpkgs-83013a6a33f3b9d4298aa6abb93422dde04163d9.tar.zst
nixpkgs-83013a6a33f3b9d4298aa6abb93422dde04163d9.zip
Merge pull request #145559 from veprbl/pr/yoda_1_9_2
yoda: 1.9.1 -> 1.9.2
Diffstat (limited to 'pkgs/development/libraries/physics')
-rw-r--r--pkgs/development/libraries/physics/yoda/default.nix17
1 files changed, 6 insertions, 11 deletions
diff --git a/pkgs/development/libraries/physics/yoda/default.nix b/pkgs/development/libraries/physics/yoda/default.nix
index a804766b85d..e23f7aaadd9 100644
--- a/pkgs/development/libraries/physics/yoda/default.nix
+++ b/pkgs/development/libraries/physics/yoda/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "yoda";
-  version = "1.9.1";
+  version = "1.9.2";
 
   src = fetchurl {
     url = "https://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2";
-    sha256 = "sha256-xhagWmVlvlsayL0oWTihoxhq0ejejEACCsdQqFN1HUw=";
+    hash = "sha256-zb7j7fBMv2brJ+gUMMDTKFEJDC2embENe3wXdx0VTOA=";
   };
 
   patches = [
@@ -41,18 +41,13 @@ stdenv.mkDerivation rec {
 
   doInstallCheck = true;
   installCheckTarget = "check";
-
-  # Workaround for https://gitlab.com/hepcedar/yoda/-/merge_requests/49
-  preInstallCheck = ''
-    cp tests/test{1,}.yoda
-    gzip -c tests/test.yoda > tests/test.yoda.gz
-  '';
+  enableParallelChecking = false; # testreader consumes output of testwriter
 
   meta = {
     description = "Provides small set of data analysis (specifically histogramming) classes";
-    license     = lib.licenses.gpl3;
-    homepage    = "https://yoda.hepforge.org";
-    platforms   = lib.platforms.unix;
+    license = lib.licenses.gpl3;
+    homepage = "https://yoda.hepforge.org";
+    platforms = lib.platforms.unix;
     maintainers = with lib.maintainers; [ veprbl ];
   };
 }