1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ depot, pkgs, ... }:
let
# Import shared Go dependencies (includes Charm Bracelet TUI stack)
sharedDeps = import ../go-deps.nix { inherit depot pkgs; };
in
sharedDeps // rec {
# github.com/chikamim/nilsimsa - Locality-sensitive hashing for similarity detection
# git-branchey-specific dependency for detecting amended commits
chikamim-nilsimsa = depot.nix.buildGo.external {
path = "github.com/chikamim/nilsimsa";
src = pkgs.fetchFromGitHub {
owner = "chikamim";
repo = "nilsimsa";
rev = "84540bbf06dd";
sha256 = "17h30yjcgg9cq45z9vn5i213n0n4m8f61wij8daib15mw3i5f3wx";
};
};
}
|