about summary refs log tree commit diff
path: root/pkgs/build-support/fetchgit/tests.nix
blob: 6805473e296851c280dc36f5e59c9635befd1cc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ invalidateFetcherByDrvHash, fetchgit, ... }:

{
  simple = invalidateFetcherByDrvHash fetchgit {
    name = "nix-source";
    url = "https://github.com/NixOS/nix";
    rev = "9d9dbe6ed05854e03811c361a3380e09183f4f4a";
    sha256 = "sha256-7DszvbCNTjpzGRmpIVAWXk20P0/XTrWZ79KSOGLrUWY=";
  };
}