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

Commits on Oct 28, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    mkg20001 Maciej Krüger
    Copy the full SHA
    8d1c9bc View commit details

Commits on Oct 29, 2020

  1. Merge pull request #101989 from marsam/update-archiver

    archiver: 3.3.2 -> 3.4.0
    marsam authored Oct 29, 2020
    Copy the full SHA
    6a730c5 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/misc/archiver/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/misc/archiver/default.nix
Original file line number Diff line number Diff line change
@@ -5,16 +5,16 @@

buildGoModule rec {
pname = "archiver";
version = "3.3.2";
version = "3.4.0";

src = fetchFromGitHub {
owner = "mholt";
repo = pname;
rev = "v${version}";
sha256 = "1fi86g27c660g3mv9c5rfm0mmvh5q08704c19xnvrpwlg65glqrz";
sha256 = "16jawybywqfkp68035bnf206a2w4khjw239saa429a21lxrfyk4a";
};

vendorSha256 = "1rqhra3rfarq8f750zszkrm0jcsxa4sjbfpmcdlj5z000df699zq";
vendorSha256 = "0m89ibj3dm58j49d99dhkn0ryivnianxz7lkpkvhs0cdbzzc02az";

buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version} -X main.commit=${src.rev} -X main.date=unknown" ];