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

Commits on Jan 30, 2020

  1. lego: 3.2.0 -> 3.3.0

    bbigras committed Jan 30, 2020
    Copy the full SHA
    3922c92 View commit details
  2. Merge pull request #78784 from bbigras/lego

    lego: 3.2.0 -> 3.3.0
    marsam authored Jan 30, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d55c1b1 View commit details
Showing with 7 additions and 3 deletions.
  1. +7 −3 pkgs/tools/admin/lego/default.nix
10 changes: 7 additions & 3 deletions pkgs/tools/admin/lego/default.nix
Original file line number Diff line number Diff line change
@@ -2,18 +2,22 @@

buildGoModule rec {
pname = "lego";
version = "3.2.0";
version = "3.3.0";

src = fetchFromGitHub {
owner = "go-acme";
repo = pname;
rev = "v${version}";
sha256 = "1djvwyjg30f9bj61pf3y2k2w055pj39v0sif4rjqg8cz0j382a2z";
sha256 = "135zz5gp5vqqwmz3701n5xfvz9yxzm4m53q3dbj9vfc8xkcxn44n";
};

modSha256 = "0k3p11cji3p4nzr8aia8hp01wyx1qfx84259dwbfwg1b32ln8rkc";
modSha256 = "0jirpfd427317px0fd630bmi3li6zc5vihydwmwbj0qsfvhn4qm4";
subPackages = [ "cmd/lego" ];

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

meta = with lib; {
description = "Let's Encrypt client and ACME library written in Go";
license = licenses.mit;