3842c184b6
This makes it possible to deprecate the previous alias. Change-Id: I6efe73a21dc771cfa28094bbac434a188aebfd45 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2647 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
16 lines
367 B
Nix
16 lines
367 B
Nix
{ depot, ... }:
|
|
|
|
depot.nix.buildGo.external {
|
|
path = "github.com/src-d/gcfg";
|
|
|
|
src = depot.third_party.fetchFromGitHub {
|
|
owner = "src-d";
|
|
repo = "gcfg";
|
|
rev = "1ac3a1ac202429a54835fe8408a92880156b489d";
|
|
sha256 = "044j95skmyrwjw5fwjk6ka32rjgsg0ar0mfp9np19sh1acwv4x4r";
|
|
};
|
|
|
|
deps = with depot.third_party; [
|
|
gopkgs."gopkg.in".warnings
|
|
];
|
|
}
|