From f34d6416579c50c49be71a8fea115a74cea4a308 Mon Sep 17 00:00:00 2001 From: Renaud Date: Tue, 22 Feb 2022 20:29:30 +0100 Subject: [PATCH] cryfs: 0.11.1 -> 0.11.2 and add meta.changelog and use SPDX3 license identifier --- pkgs/tools/filesystems/cryfs/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/filesystems/cryfs/default.nix b/pkgs/tools/filesystems/cryfs/default.nix index 6d93717dd9c..4f26fc11a26 100644 --- a/pkgs/tools/filesystems/cryfs/default.nix +++ b/pkgs/tools/filesystems/cryfs/default.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "cryfs"; - version = "0.11.1"; + version = "0.11.2"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - hash = "sha256-029foKJklyOv8qHvgds/yRZ9n1/iA+U7n4O5FViHCOE="; + hash = "sha256-NV2xCC8TaJaWDZSghO8EFuygL8hJLOdx67BWaJ2NKRw="; }; postPatch = '' @@ -73,7 +73,8 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Cryptographic filesystem for the cloud"; homepage = "https://www.cryfs.org/"; - license = licenses.lgpl3; + changelog = "https://github.com/cryfs/cryfs/raw/${version}/ChangeLog.txt"; + license = licenses.lgpl3Only; maintainers = with maintainers; [ peterhoeg c0bw3b ]; platforms = platforms.unix; };