mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
29 lines
641 B
Nix
29 lines
641 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "umpire";
|
|
version = "2024.02.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LLNL";
|
|
repo = "umpire";
|
|
rev = "v${version}";
|
|
hash = "sha256-cIUGlRNdbddxcC0Lj0co945RlHcPrDLo+bZIsUB9im4=";
|
|
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" ];
|
|
};
|
|
}
|