summary refs log tree commit diff
path: root/pkgs/applications/misc/wego/default.nix
blob: 5918f3ef37882a75efc3223e880018a4aad84403 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "wego-${version}";
  version = "20160407-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "81d72ffd761f032fbd73dba4f94bd94c8c2d53d5";
  
  goPackagePath = "github.com/schachmat/wego";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/schachmat/wego";
    sha256 = "14p3hvv82bsxqnbnzz8hjv75i39kzg154a132n6cdxx3vgw76gck";
  };

  goDeps = ./deps.json;
}