mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 04:08:24 +00:00
umpire: init at 2023.06.0
This commit is contained in:
parent
64888ffe7c
commit
f740da26ec
28
pkgs/by-name/um/umpire/package.nix
Normal file
28
pkgs/by-name/um/umpire/package.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "umpire";
|
||||
version = "2023.06.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "LLNL";
|
||||
repo = "umpire";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-gdwr0ACCfkrtlVROPhxM7zT7SaCo2Eg1etrPFN4JHaA=";
|
||||
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" ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user