Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 82a0240bb06e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6653a35faa75
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 10, 2020

  1. Copy the full SHA
    043fb60 View commit details

Commits on Jun 13, 2020

  1. Copy the full SHA
    6653a35 View commit details
Showing with 12 additions and 6 deletions.
  1. +12 −6 pkgs/development/libraries/intel-media-driver/default.nix
18 changes: 12 additions & 6 deletions pkgs/development/libraries/intel-media-driver/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub
, cmake, pkgconfig
, cmake, pkg-config
, libva, libpciaccess, intel-gmmlib, libX11
}:

stdenv.mkDerivation rec {
pname = "intel-media-driver";
version = "19.4.0r";
version = "20.1.1";

src = fetchFromGitHub {
owner = "intel";
repo = "media-driver";
rev = "intel-media-${version}";
sha256 = "0gnd82z0wgiw5my1hnqlk9hcjjqpsgasqq5xcdrbkfa40wpb132a";
sha256 = "1mww20c9r7a57njqa2835ayjvk46lrv2yks9a2y8i0s5qzdi8m1i";
};

cmakeFlags = [
@@ -21,15 +21,21 @@ stdenv.mkDerivation rec {
"-DMEDIA_RUN_TEST_SUITE=OFF"
];

nativeBuildInputs = [ cmake pkgconfig ];
nativeBuildInputs = [ cmake pkg-config ];

buildInputs = [ libva libpciaccess intel-gmmlib libX11 ];

meta = with stdenv.lib; {
description = "Intel Media Driver for VAAPI — Broadwell+ iGPUs";
longDescription = ''
The Intel Media Driver for VAAPI is a new VA-API (Video Acceleration API)
user mode driver supporting hardware accelerated decoding, encoding, and
video post processing for GEN based graphics hardware.
'';
homepage = "https://github.com/intel/media-driver";
changelog = "https://github.com/intel/media-driver/releases/tag/intel-media-${version}";
license = with licenses; [ bsd3 mit ];
description = "Intel Media Driver for VAAPI — Broadwell+ iGPUs";
platforms = platforms.linux;
maintainers = with maintainers; [ jfrankenau ];
maintainers = with maintainers; [ primeos jfrankenau ];
};
}