nixpkgs-suyu/pkgs/development/libraries/intel-gmmlib/default.nix

31 lines
831 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2018-11-07 17:53:39 +01:00
, cmake
}:
stdenv.mkDerivation rec {
pname = "intel-gmmlib";
2021-05-04 13:52:59 +02:00
version = "21.1.3";
2018-11-07 17:53:39 +01:00
src = fetchFromGitHub {
owner = "intel";
repo = "gmmlib";
rev = "${pname}-${version}";
2021-05-04 13:52:59 +02:00
sha256 = "05vcr2rv6l38j7rv34mvcvzpgc2gjmvsb73wyprgdj71mcwrksyq";
2018-11-07 17:53:39 +01:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
2020-03-27 00:50:40 +01:00
homepage = "https://github.com/intel/gmmlib";
2018-11-07 17:53:39 +01:00
license = licenses.mit;
description = "Intel Graphics Memory Management Library";
longDescription = ''
The Intel(R) Graphics Memory Management Library provides device specific
and buffer management for the Intel(R) Graphics Compute Runtime for
OpenCL(TM) and the Intel(R) Media Driver for VAAPI.
'';
2018-11-07 17:53:39 +01:00
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ primeos ];
2018-11-07 17:53:39 +01:00
};
}