Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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

[18.03] fscrypt: 0.2.3 -> 0.2.4 (security, CVE-2018-6558)

authored by Michael Weiss and committed by GitHub 862fb521 26775934

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