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: 8ce65087c333
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cffb1cbcb24b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 28, 2020

  1. act: 0.2.7 -> 0.2.8

    marsam committed Apr 28, 2020
    Copy the full SHA
    7b4aa95 View commit details

Commits on Apr 29, 2020

  1. Merge pull request #86286 from marsam/update-act

    act: 0.2.7 -> 0.2.8
    marsam authored Apr 29, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    erictapen Kerstin
    Copy the full SHA
    cffb1cb View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/misc/act/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/misc/act/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule rec {
pname = "act";
version = "0.2.7";
version = "0.2.8";

src = fetchFromGitHub {
owner = "nektos";
repo = pname;
rev = "v${version}";
sha256 = "0qx3vwsynmil1h3d2dzvqz0jzshfyy3vin14zjfmd353d915hf06";
sha256 = "14ird8z8f467spa0kdzjf6lq7pipq7rwxrdk6ppv7y1fxw96qm9x";
};

modSha256 = "0276dngh29kzgm95d23r8ajjrrkss0v0f0wfq1ribgsxh17v0y5n";
modSha256 = "09q8dh4g4k0y7mrhwyi9py7zdiipmq91j3f32cn635v2xw6zyg2k";

buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];