Commit 433b75b5 authored by qbisi's avatar qbisi
Browse files

umpire: mark linux supported platforms

parent 045f67c3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -43,11 +43,11 @@ stdenv.mkDerivation rec {
    (lib.cmakeFeature "CMAKE_CUDA_ARCHITECTURES" cudaPackages.flags.cmakeCudaArchitecturesString)
  ];

  meta = with lib; {
  meta = {
    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" ];
    maintainers = with lib.maintainers; [ sheepforce ];
    license = with lib.licenses; [ mit ];
    platforms = lib.platforms.linux;
  };
}