summary refs log tree commit diff
path: root/pkgs/build-support/fetchgitlocal/default.nix
blob: 830133b982d3b5e0ccefed74a9acd4fea059bc9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ runCommand, git, nix }: src:

let
  srcStr = toString src;

  # Adds the current directory (respecting ignored files) to the git store, and returns the hash
  gitHashFile = runCommand "put-in-git" {
      nativeBuildInputs = [ git ];
      dummy = builtins.currentTime; # impure, do every time
      preferLocalBuild = true;
    } ''
      cd ${srcStr}
      ROOT=$(git rev-parse --show-toplevel) # path to repo

      cp $ROOT/.git/index $ROOT/.git/index-user # backup index
      git reset # reset index
      git add . # add current directory

      # hash of current directory
      # remove trailing newline
      git rev-parse $(git write-tree) \
        | tr -d '\n' > $out

      mv $ROOT/.git/index-user $ROOT/.git/index # restore index
    '';

  gitHash = builtins.readFile gitHashFile; # cache against git hash

  nixPath = runCommand "put-in-nix" {
      nativeBuildInputs = [ git ];
      preferLocalBuild = true;
    } ''
      mkdir $out

      # dump tar of *current directory* at given revision
      git -C ${srcStr} archive --format=tar ${gitHash} \
        | tar xvf - -C $out
    '';

in nixPath