mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
13af81da96
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.
20 lines
387 B
Nix
20 lines
387 B
Nix
{
|
|
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;
|
|
};
|
|
})
|