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


                           

                                                               





                                              
                                                                    

    
                      



                                      
 
{ stdenv, buildGoPackage, fetchgit }:

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

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

  goDeps = ./deps.nix;

  meta = {
    license = stdenv.lib.licenses.isc;
  };
}