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

Commits on Nov 5, 2020

  1. archiver: 3.3.0 -> 3.3.1

    marsam authored and redvers committed Nov 5, 2020
    Copy the full SHA
    98cddef View commit details
  2. archiver: 3.3.1 -> 3.3.2

    marsam authored and redvers committed Nov 5, 2020
    Copy the full SHA
    70caff1 View commit details
  3. Merge pull request #102860 from redvers/update_archiver_20.09_3.3.2

    archiver: 3.3.0 -> 3.3.2 [20.09]
    mweinelt authored Nov 5, 2020
    Copy the full SHA
    cfe0a7b View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/applications/misc/archiver/default.nix
8 changes: 5 additions & 3 deletions pkgs/applications/misc/archiver/default.nix
Original file line number Diff line number Diff line change
@@ -5,16 +5,18 @@

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

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

vendorSha256 = "1ikrgl03r9zkn86kxkqi2kf540g3qzzz24i5wvh6g3d5q49nygl9";
vendorSha256 = "1rqhra3rfarq8f750zszkrm0jcsxa4sjbfpmcdlj5z000df699zq";

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

doCheck = false;