nixpkgs/pkgs/by-name/um/umpire/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
641 B
Nix
Raw Normal View History

2024-01-30 10:43:43 +01:00
{ stdenv
, lib
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "umpire";
2024-02-23 09:45:58 +01:00
version = "2024.02.0";
2024-01-30 10:43:43 +01:00
src = fetchFromGitHub {
owner = "LLNL";
repo = "umpire";
rev = "v${version}";
2024-02-23 09:45:58 +01:00
hash = "sha256-0xJrICpGHQCLXfhDfS0/6gD3wrM9y6XB4XxyjG3vWGw=";
2024-01-30 10:43:43 +01:00
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" ];
};
}