Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / nv-codec-headers / 11_x.nix
blobfba333ff6dbe6a1caaf31da65314aebd78e881df
1 { stdenv
2 , lib
3 , fetchgit
4 }:
6 stdenv.mkDerivation rec {
7   pname = "nv-codec-headers";
8   version = "11.1.5.2";
10   src = fetchgit {
11     url = "https://git.videolan.org/git/ffmpeg/nv-codec-headers.git";
12     rev = "n${version}";
13     sha256 = "sha256-KzaqwpzISHB7tSTruynEOJmSlJnAFK2h7/cRI/zkNPk=";
14   };
16   makeFlags = [
17     "PREFIX=$(out)"
18   ];
20   meta = with lib; {
21     description = "FFmpeg version of headers for NVENC";
22     homepage = "https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git";
23     license = licenses.mit;
24     maintainers = with maintainers; [ MP2E ];
25     platforms = platforms.all;
26   };