Skip to content

Instantly share code, notes, and snippets.

@deepfire
Last active March 14, 2017 00:12
with import <nixpkgs> {};
let vendorgl = linuxPackages.nvidia_x11.overrideAttrs (oldAttrs: rec {
libsOnly = true;
kernel = null;
name = "nvidia-x11-367.27-${pkgs.linuxPackages.kernel.version}";
src = fetchurl {
url = "http://download.nvidia.com/XFree86/Linux-x86_64/367.27/NVIDIA-Linux-x86_64-367.27.run";
sha256 = "0000000000000000000000000000000000000000000000000000";
};
});
in buildEnv { name = "opengl-drivers"; paths = [ vendorgl ]; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment