Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
237 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
callPackage,
fetchpatch2,
}:
let
mkVtk = initArgs: callPackage (import ./generic.nix initArgs) { };
in
{
vtk_9_5 = mkVtk {
version = "9.5.2";
sourceSha256 = "sha256-zuZLmNJw/3MC2vHvE0WN/11awey0XUdyODX399ViyYk=";
};
}