summary refs log tree commit diff
path: root/pkgs/development/tools/glide/default.nix
blob: cc63921976f5cff26d39a3524d16bc790cf04a2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This file was generated by go2nix.
{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }:

with go16Packages;

buildGoPackage rec {
  name = "glide-${version}";
  version = "0.10.2";
  rev = "${version}";
  
  goPackagePath = "github.com/Masterminds/glide";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/Masterminds/glide";
    sha256 = "1qb2n5i04gabb2snnwfr8wv4ypcp1pdzvgga62m9xkhk4p2w6pwl";
  };
}