openvdb_11: init at 11.0.0

There are many breaking changes in v12, which some consumers are not
ready for and would require complex changes. This is expected to go away
once it becomes unused in nixpkgs.
This commit is contained in:
Andrew Marshall 2024-11-06 17:24:11 -05:00
parent 4aa36568d4
commit 13af81da96
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{
lib,
fetchFromGitHub,
openvdb,
}:
openvdb.overrideAttrs (old: rec {
name = "${old.pname}-${version}";
version = "11.0.0";
src = fetchFromGitHub {
owner = "AcademySoftwareFoundation";
repo = "openvdb";
rev = "v${version}";
sha256 = "sha256-wDDjX0nKZ4/DIbEX33PoxR43dJDj2NF3fm+Egug62GQ=";
};
meta = old.meta // {
license = lib.licenses.mpl20;
};
})

View File

@ -22214,6 +22214,7 @@ with pkgs;
zunclient = with python311Packages; toPythonApplication python-zunclient;
openvdb = callPackage ../development/libraries/openvdb { };
openvdb_11 = callPackage ../development/libraries/openvdb/11.nix { };
openvr = callPackage ../by-name/op/openvr/package.nix {
inherit (darwin.apple_sdk.frameworks) Foundation AppKit;