mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
28 lines
641 B
Nix
28 lines
641 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "umpire";
|
|
version = "2024.07.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LLNL";
|
|
repo = "umpire";
|
|
rev = "v${version}";
|
|
hash = "sha256-JbYaJe4bqlB272aZxB3Amw8fX/pmZr/4/7kaukAiK8c=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "Application-focused API for memory management on NUMA & GPU architectures";
|
|
homepage = "https://github.com/LLNL/Umpire";
|
|
maintainers = with maintainers; [ sheepforce ];
|
|
license = with licenses; [ mit ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|