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

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

33 lines
851 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
2018-11-07 16:53:39 +00:00
, cmake
}:
stdenv.mkDerivation rec {
pname = "intel-gmmlib";
2022-05-26 04:40:53 +00:00
version = "22.1.3";
2018-11-07 16:53:39 +00:00
src = fetchFromGitHub {
owner = "intel";
repo = "gmmlib";
rev = "intel-gmmlib-${version}";
2022-05-26 04:40:53 +00:00
sha256 = "sha256-YckzS9f0q+5YOR+8mTZ/u67NVFrwLllxfEuojuJC84E=";
2018-11-07 16:53:39 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
2020-03-26 23:50:40 +00:00
homepage = "https://github.com/intel/gmmlib";
2018-11-07 16:53:39 +00: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.
'';
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = with maintainers; [ SuperSandro2000 ];
2018-11-07 16:53:39 +00:00
};
}