summaryrefslogtreecommitdiff
path: root/nix/nixgl.nix
blob: 82dbdfd710b696e4d368e596d3dc6e8b5a752857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pkgs: let

  src = builtins.fetchTarball {
    name = "nixgl-unstable";
    url = "https://github.com/guibou/nixGL/archive/7165ffbccbd2cf4379b6cd6d2edd1620a427e5ae.tar.gz";
    sha256 = "1wc85xqnq2wb008y9acb29jbfkc242m9697g2b8j6q3yqmfhrks1";
  };

  nixgl = (import src) {
    inherit pkgs;
    enable32bits = false;
  };

in nixgl.auto.nixGLDefault