Merge pull request #47881 from primeos/security-backports-for-18.03

[18.03] fscrypt: 0.2.3 -> 0.2.4 (security, CVE-2018-6558)
This commit is contained in:
Michael Weiss
2018-10-04 21:29:27 +02:00
committed by GitHub

View File

@@ -1,10 +1,10 @@
{ stdenv, buildGoPackage, fetchFromGitHub, pam }:
{ stdenv, buildGo110Package, fetchFromGitHub, pam }:
# Don't use this for anything important yet!
buildGoPackage rec {
buildGo110Package rec {
name = "fscrypt-${version}";
version = "0.2.3";
version = "0.2.4";
goPackagePath = "github.com/google/fscrypt";
@@ -12,7 +12,7 @@ buildGoPackage rec {
owner = "google";
repo = "fscrypt";
rev = "v${version}";
sha256 = "126bbxim4nj56kplvyv528i88mfray50r2rc6ysblkmaw6x0fd9c";
sha256 = "10gbyqzgi30as1crvqbb4rc5p8zzbzk1q5j080h1gnz56qzwivr8";
};
buildInputs = [ pam ];