summary refs log blame commit diff
path: root/pkgs/applications/misc/wego/default.nix
blob: b61566af6b2c1351e2b927485c1a2a8e96da43bf (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                                     













                                                                    
                      
 
{ stdenv, buildGoPackage, fetchgit }:

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.nix;
}