Skip to content

Commit

Permalink
nv-codec-headers: hide parameter sources
Browse files Browse the repository at this point in the history
In order to avoid clash with external overlays that use the name `source`.
  • Loading branch information
AndersonTorres committed Jul 21, 2024
1 parent e8afe8d commit c7316ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/by-name/nv/nv-codec-headers/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
callPackage,
stdenvNoCC,
# Configurable options
sources ? callPackage ./sources.nix { },
majorVersion ? "9",
}:

let
sources = callPackage ./sources.nix { };
pick = {
"8" = sources.nv-codec-headers-8;
"9" = sources.nv-codec-headers-9;
Expand All @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation {
};

meta = {
description = "FFmpeg version of headers for NVENC - version ${pick.version}";
description = "FFmpeg version of headers for NVENC - major version ${pick.version}";
homepage = "https://ffmpeg.org/";
downloadPage = "https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git";
license = with lib.licenses; [ mit ];
Expand Down

0 comments on commit c7316ef

Please sign in to comment.