www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

all.nix (561B)


      1 let
      2   pkgs = import <nixpkgs> { config = { allowUnfree = true; }; };
      3 in
      4 {
      5   pure = pkgs.recurseIntoAttrs (pkgs.callPackage ./nixGL.nix {
      6     nvidiaVersion = "440.82";
      7     nvidiaHash = "edd415acf2f75a659e0f3b4f27c1fab770cf21614e84a18152d94f0d004a758e";
      8   });
      9 
     10   versionFile = pkgs.recurseIntoAttrs (pkgs.callPackage ./nixGL.nix {
     11     nvidiaVersionFile = pkgs.writeText "nvidia-version-440.82" ''
     12       NVRM version: NVIDIA UNIX x86_64 Kernel Module  440.82  Wed Apr  1 20:04:33 UTC 2020
     13       GCC version:  gcc version 9.3.0 (Arch Linux 9.3.0-1)
     14     '';
     15   });
     16 }