Skip to content

Instantly share code, notes, and snippets.

@tbenst
Created August 19, 2020 23:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tbenst/21e7933684cfd07a33a57e8f66ab1c97 to your computer and use it in GitHub Desktop.
Save tbenst/21e7933684cfd07a33a57e8f66ab1c97 to your computer and use it in GitHub Desktop.
let
nixpkgsSHA = "3cb7a1cffe9bb43ec51a7707959edbebdc65ec7a"; # 2020-07-18
pkgs = import (fetchTarball
"https://github.com/tbenst/nixpkgs/archive/${nixpkgsSHA}.tar.gz") {
system = builtins.currentSystem;
overlays = [ (self: super: {
hdf5 = super.hdf5.override { mpi = super.mpich; };
})];
};
in
pkgs.stdenv.mkDerivation {
name = "circus";
buildInputs = [
pkgs.pythonPackages.h5py
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment