tvl-depot/third_party/nixery.nix
2019-09-03 00:25:40 +01:00

18 lines
449 B
Nix

# Technically I suppose Nixery is not a third-party program, but it's
# outside of this repository ...
{ pkgs }:
let src = pkgs.fetchFromGitHub {
owner = "google";
repo = "nixery";
rev = "811a1fd228906c89af61d340be8f44788152dad9";
sha256 = "0jsps86kr64rbnyi49w4pv9pr2fz1wp80zzk5a8ap6q21daky4q0";
};
in import src {
inherit pkgs;
preLaunch = ''
export USER=root
cachix use tazjin
'';
extraPackages = with pkgs; [ cachix ];
}