Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 71cd2b0bd41d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a3cd1b8fdab8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 26, 2019

  1. wtf: 0.4.0 -> 0.10.3 (#62084)

    marsam authored and kalbasit committed May 26, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Moredread André-Patrick Bubel
    Copy the full SHA
    a3cd1b8 View commit details
Showing with 10 additions and 10 deletions.
  1. +10 −10 pkgs/applications/misc/wtf/default.nix
20 changes: 10 additions & 10 deletions pkgs/applications/misc/wtf/default.nix
Original file line number Diff line number Diff line change
@@ -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; {