From 7527e5b8bff3ab244cfb58b4ee8b786786fe8d78 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 16 Dec 2024 21:00:39 +0100 Subject: [PATCH] pdi: 1.7.1 -> 1.8.0 Diff: https://github.com/pdidev/pdi/compare/1.7.1-gh...1.8.0 Changelog: https://github.com/pdidev/pdi/releases/tag/1.8.0 --- pkgs/by-name/pd/pdi/package.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pd/pdi/package.nix b/pkgs/by-name/pd/pdi/package.nix index 519b72594a10..7b7cad6e15f3 100644 --- a/pkgs/by-name/pd/pdi/package.nix +++ b/pkgs/by-name/pd/pdi/package.nix @@ -32,13 +32,13 @@ let in stdenv.mkDerivation rec { pname = "pdi"; - version = "1.7.1"; + version = "1.8.0"; src = fetchFromGitHub { owner = "pdidev"; repo = "pdi"; - rev = "refs/tags/${version}-gh"; - hash = "sha256-VTbXsUUJb/6zNyn4QXNHajgzzgjSwdW/d+bTSDcpRaE="; + tag = version; + hash = "sha256-l4vKWIitP0BqSRPxpv0UgjAOgHJ3Aecm1hT+f9BeqRA="; }; # Current hdf5 version in nixpkgs is 1.14.4.3 which is 4 numbers long and doesn't match the 3 number regex. :') @@ -81,8 +81,13 @@ stdenv.mkDerivation rec { meta = { description = "PDI supports loose coupling of simulation codes with data handling libraries"; homepage = "https://pdi.dev/master/"; + changelog = "https://github.com/pdidev/pdi/releases/tag/${src.tag}"; license = lib.licenses.bsd3; mainProgram = "pdirun"; maintainers = with lib.maintainers; [ GaetanLepage ]; + badPlatforms = [ + # fatal error: 'link.h' file not found + lib.systems.inspect.patterns.isDarwin + ]; }; }