Merge pull request #11 from karaolidis/fix-eval

fix: flake eval
This commit is contained in:
Robin Appelman 2026-02-06 17:32:56 +01:00 committed by GitHub
commit dc88447e64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 5 deletions

View file

@ -1,5 +1,4 @@
{
lib,
writeShellApplication,
jq,
}:

View file

@ -17,10 +17,10 @@
inherit system overlays;
config.allowUnfreePredicate = pkg: true;
};
in rec {
packages = rec {
inherit (pkgs) nvidia-patch-extractor nvidia-patch nvidia-patch-list;
nvidia-patched = nvidia-patch.patch-nvenc (nvidia-patch.patch-fbc pkgs.linuxPackages.nvidiaPackages.stable);
in {
packages = {
inherit (pkgs) nvidia-patch-extractor;
nvidia-patched = pkgs.nvidia-patch.patch-nvenc (pkgs.nvidia-patch.patch-fbc pkgs.linuxPackages.nvidiaPackages.stable);
};
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [jq patch];