From d7ef011d0c8ace302b1893ccc823eb87a319f9be Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Fri, 15 Sep 2023 22:02:17 +0800 Subject: [PATCH] sops: 3.7.3 -> 3.8.0 --- pkgs/tools/security/sops/default.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/security/sops/default.nix b/pkgs/tools/security/sops/default.nix index 1f0df71b5445..178c6c30e35e 100644 --- a/pkgs/tools/security/sops/default.nix +++ b/pkgs/tools/security/sops/default.nix @@ -2,25 +2,25 @@ buildGoModule rec { pname = "sops"; - version = "3.7.3"; + version = "3.8.0"; src = fetchFromGitHub { - rev = "v${version}"; - owner = "mozilla"; + owner = "getsops"; repo = pname; - sha256 = "sha256-wN1ksLwD4G+fUhvCe+jahh1PojPk6L6tnx1rsc7dz+M="; + rev = "v${version}"; + hash = "sha256-nUeygUZdtDyYGW3hZdxBHSUxYILJcHoIIYRpoxkAlI4="; }; - vendorHash = "sha256-8IaE+vhVZkc9QDR6+/3eOSsuf3SYF2upNcCifbqtx14="; + vendorHash = "sha256-/fh6pQ7u1icIYGM4gJHXyDNQlAbLnVluw5icovBMZ5k="; - ldflags = [ "-s" "-w" ]; + subPackages = [ "cmd/sops" ]; - doCheck = false; + ldflags = [ "-s" "-w" "-X github.com/getsops/sops/v3/version.Version=${version}" ]; meta = with lib; { - homepage = "https://github.com/mozilla/sops"; - description = "Mozilla sops (Secrets OPerationS) is an editor of encrypted files"; - changelog = "https://github.com/mozilla/sops/raw/v${version}/CHANGELOG.rst"; + homepage = "https://github.com/getsops/sops"; + description = "Simple and flexible tool for managing secrets"; + changelog = "https://github.com/getsops/sops/blob/v${version}/CHANGELOG.rst"; maintainers = [ maintainers.marsam ]; license = licenses.mpl20; };