fscrypt: 0.2.2 -> 0.2.3

+5 -5
+5 -5
pkgs/os-specific/linux/fscrypt/default.nix
··· 1 - { stdenv, buildGoPackage, fetchFromGitHub, libargon2, pam }: 1 + { stdenv, buildGoPackage, fetchFromGitHub, pam }: 2 2 3 3 # Don't use this for anything important yet! 4 4 5 5 buildGoPackage rec { 6 6 name = "fscrypt-${version}"; 7 - version = "0.2.2"; 7 + version = "0.2.3"; 8 8 9 9 goPackagePath = "github.com/google/fscrypt"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "google"; 13 13 repo = "fscrypt"; 14 - rev = version; 15 - sha256 = "0a85vj1zsybhzvvgdvlw6ywh2a6inmrmc95pfa1js4vkx0ixf1kh"; 14 + rev = "v${version}"; 15 + sha256 = "126bbxim4nj56kplvyv528i88mfray50r2rc6ysblkmaw6x0fd9c"; 16 16 }; 17 17 18 - buildInputs = [ libargon2 pam ]; 18 + buildInputs = [ pam ]; 19 19 20 20 meta = with stdenv.lib; { 21 21 description =