nixpkgs/pkgs/development/libraries/intel-gmmlib/default.nix
2020-01-26 02:19:40 +01:00

26 lines
590 B
Nix

{ stdenv, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "intel-gmmlib";
version = "19.4.1";
src = fetchFromGitHub {
owner = "intel";
repo = "gmmlib";
rev = "${pname}-${version}";
sha256 = "167g5rmrmzmfp4y4vghyxqi4schvvkwax3cvqgniqx8q1ib5l346";
};
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 ];
};
}