tvl-depot/third_party/gopkgs/github.com/emirpasic/gods/default.nix
Vincent Ambo 36fa320e55 feat(third_party): Add Go packages for src-d/go-git
This is going to be used in my git syncing tool for the cgit setup.
2019-12-19 16:25:47 +00:00

12 lines
296 B
Nix

{ pkgs, ... }:
pkgs.buildGo.external {
path = "github.com/emirpasic/gods";
src = pkgs.third_party.fetchFromGitHub {
owner = "emirpasic";
repo = "gods";
rev = "4e23915b9a82f35f320a68a395a7a5045c826932";
sha256 = "00f8ch1rccakc62f9nj97hapvnx84z7wbcdmbmz7p802b9mxk5nl";
};
}