fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, buildGoPackage, fetchgit }:
2
3buildGoPackage rec {
4 pname = "govers";
5 version = "20160623-${lib.strings.substring 0 7 rev}";
6 rev = "77fd787551fc5e7ae30696e009e334d52d2d3a43";
7
8 goPackagePath = "github.com/rogpeppe/govers";
9
10 src = fetchgit {
11 inherit rev;
12 url = "https://github.com/rogpeppe/govers";
13 sha256 = "12w83vyi8mgn48fwdm2js693qcydimxapg8rk0yf01w0ab03r5wn";
14 };
15
16 dontRenameImports = true;
17
18 doCheck = false; # fails, silently
19
20}