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: 869f90be8aba
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9edf8f73f76b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 12, 2019

  1. sops: 3.3.0 -> 3.3.1

    marsam authored and FRidh committed Jun 12, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9edf8f7 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/tools/security/sops/default.nix
5 changes: 3 additions & 2 deletions pkgs/tools/security/sops/default.nix
Original file line number Diff line number Diff line change
@@ -2,20 +2,21 @@

buildGoPackage rec {
pname = "sops";
version = "3.3.0";
version = "3.3.1";

goPackagePath = "go.mozilla.org/sops";

src = fetchFromGitHub {
rev = version;
owner = "mozilla";
repo = pname;
sha256 = "0h02iy1dfn4874gyj3k07gbw8byb7rngvsi9kjglnad2pkf0pq2d";
sha256 = "0jbrz3yz6cj08h8cx6y98m8r0lpclh9367cw5apy6w3v71i3svfi";
};

meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Mozilla sops (Secrets OPerationS) is an editor of encrypted files";
maintainers = [ maintainers.marsam ];
license = licenses.mpl20;
};
}