wtf: 0.4.0 -> 0.10.3 (#62084)

This commit is contained in:
Mario Rodas 2019-05-26 11:23:10 -05:00 committed by Wael Nasreddine
parent 71cd2b0bd4
commit a3cd1b8fda

View file

@ -1,21 +1,21 @@
{ buildGoPackage
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoPackage rec {
name = "wtf-${version}";
version = "0.4.0";
goPackagePath = "github.com/senorprogrammer/wtf";
buildGoModule rec {
pname = "wtf";
version = "0.10.3";
src = fetchFromGitHub {
owner = "senorprogrammer";
repo = "wtf";
rev = "${version}";
sha256 = "1vgjqmw27baiq9brmnafic3w3hw11p5qc6ahbdxi5n5n4bx7j6vn";
owner = "wtfutil";
repo = pname;
rev = "v${version}";
sha256 = "0ffpydxlc2c9rpr6rnlqk3ca8xc4hjl2107wzcxzx9id1hw8fb40";
};
modSha256 = "0as736nnx7ci4w9gdp27g55g6dny9bh1fryz3g89gxm2sa2nlb9l";
buildFlagsArray = [ "-ldflags=" "-X main.version=${version}" ];
meta = with lib; {