mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-18 13:50:04 +00:00
rPackages.Rhdf5lib: enable c++ bindings
This commit is contained in:
@@ -1432,10 +1432,12 @@ let
|
||||
buildInputs = attrs.buildInputs ++ [ opencvGtk ];
|
||||
});
|
||||
|
||||
Rhdf5lib = old.Rhdf5lib.overrideAttrs (attrs: {
|
||||
propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ pkgs.hdf5_1_10.dev pkgs.libaec ];
|
||||
Rhdf5lib = let
|
||||
hdf5 = pkgs.hdf5_1_10.overrideAttrs (attrs: {configureFlags = attrs.configureFlags ++ [ "--enable-cxx" ];});
|
||||
in old.Rhdf5lib.overrideAttrs (attrs: {
|
||||
propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ hdf5.dev pkgs.libaec ];
|
||||
patches = [ ./patches/Rhdf5lib.patch ];
|
||||
passthru.hdf5 = pkgs.hdf5;
|
||||
passthru.hdf5 = hdf5;
|
||||
});
|
||||
|
||||
rhdf5filters = old.rhdf5filters.overrideAttrs (attrs: {
|
||||
|
||||
Reference in New Issue
Block a user