64b5073c99
First step towards 2019Q1
26 lines
583 B
Nix
26 lines
583 B
Nix
{ stdenv, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "intel-gmmlib-${version}";
|
|
version = "19.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "gmmlib";
|
|
rev = name;
|
|
sha256 = "1nw5qg10dqkchx39vqk9nkqggk0in2kr794dqjp73njpirixgr2b";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/intel/gmmlib;
|
|
license = licenses.mit;
|
|
description = "Intel Graphics Memory Management Library";
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ jfrankenau ];
|
|
};
|
|
}
|