mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-15 14:29:23 +08:00
9 lines
167 B
Nix
9 lines
167 B
Nix
{ src, stdenv, cmake, hdf5 }: stdenv.mkDerivation
|
|
{
|
|
name = "highfive";
|
|
inherit src;
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ hdf5 ];
|
|
doCheck = true;
|
|
}
|