36fa320e55
This is going to be used in my git syncing tool for the cgit setup.
16 lines
389 B
Nix
16 lines
389 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.buildGo.external {
|
|
path = "gopkg.in/src-d/go-billy.v4";
|
|
|
|
src = pkgs.third_party.fetchFromGitHub {
|
|
owner = "src-d";
|
|
repo = "go-billy";
|
|
rev = "fd409ff12f33d0d60af0ce0abeb8d93df360af49";
|
|
sha256 = "1j0pl6ggzmd2lrqj71vmsnl6cqm43145h7yg6sy3j5n7hhd592qv";
|
|
};
|
|
|
|
deps = with pkgs.third_party; map (p: p.gopkg) [
|
|
gopkgs."golang.org".x.sys.unix
|
|
];
|
|
}
|