tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
fscrypt: Fix the build (requires Go 1.10)
Michael Weiss
7 years ago
27018df7
02af3cd1
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
fscrypt
default.nix
+2
-2
pkgs/os-specific/linux/fscrypt/default.nix
···
1
1
-
{ stdenv, buildGoPackage, fetchFromGitHub, pam }:
1
1
+
{ stdenv, buildGo110Package, fetchFromGitHub, pam }:
2
2
3
3
# Don't use this for anything important yet!
4
4
5
5
-
buildGoPackage rec {
5
5
+
buildGo110Package rec {
6
6
name = "fscrypt-${version}";
7
7
version = "0.2.4";
8
8