about summary refs log tree commit diff
path: root/third_party/nixery/default.nix
blob: 29fca8cc68973a99d71da6ef3acd54adede6e803 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Import the Nixery repository as-is, but pass our own package set
# instead of the pin it has.
{ depot, pkgs, ... }:

let
  inherit (depot.nix.utils) drvTargets;

  commit = "e85b7260b58e5cd60630c0f7e72d4eebe21c6617";
  src = pkgs.fetchFromGitHub {
    owner = "google";
    repo = "nixery";
    rev = commit;
    sha256 = "1f459syg0ssw4l51yii83gq12gcsmdpzdq4kd2wj2qry6z16ayj4";
  };
in drvTargets (import src {
  inherit pkgs;
  commitHash = _: commit;
})