3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/intel-gmmlib/default.nix
Sandro c32fa3f108
intel-gmmlib: add x686-linux to meta.platforms (#136738)
* intel-gmmlib: set meta.platforms ot linux to unbreak it on i686

* Update pkgs/development/libraries/intel-gmmlib/default.nix

Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>

Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>
2021-09-05 10:45:38 +02:00

33 lines
840 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "intel-gmmlib";
version = "21.2.2";
src = fetchFromGitHub {
owner = "intel";
repo = "gmmlib";
rev = "${pname}-${version}";
sha256 = "134l0d74ai4mqlp244nvkvg3mgzbzy20mjd274yay8g8hvb1g90v";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
homepage = "https://github.com/intel/gmmlib";
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; [ primeos ];
};
}