tuxclocker/release.nix

14 lines
466 B
Nix
Raw Permalink Normal View History

2023-07-18 08:17:10 -05:00
let
sources = import ./npins;
pkgs =
if (builtins.pathExists ./npins)
then import sources.nixpkgs {}
else import <nixpkgs> {};
2023-07-18 08:17:10 -05:00
in with pkgs;
libsForQt5.callPackage ./default.nix {
libXNVCtrl = linuxPackages.nvidia_x11.settings.libXNVCtrl;
nvidia_x11 = linuxPackages.nvidia_x11;
#boost = boost179;
# TODO: I'd like to pin this, but specifying 1.79 gives a compile error even though the exact same hash is used if 'boost' is used
}