nixpkgs/pkgs/development/libraries/nv-codec-headers/make-nv-codec-headers.nix
Anderson Torres 719105a413 nv-codec-headers-versions: init
It globs all versions of nv-codec-headers kept/needed on Nixpkgs.

The default is kept at 9, as before.
2024-02-23 09:49:23 -03:00

33 lines
644 B
Nix

{ lib
, stdenvNoCC
, fetchgit
}:
{ pname ? "nv-codec-headers"
, version
, hash
}:
stdenvNoCC.mkDerivation {
inherit pname version;
src = fetchgit {
url = "https://git.videolan.org/git/ffmpeg/nv-codec-headers.git";
rev = "n${version}";
inherit hash;
};
makeFlags = [
"PREFIX=$(out)"
];
meta = {
description = "FFmpeg version of headers for NVENC";
homepage = "https://ffmpeg.org/";
downloadPage = "https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.all;
};
}