nix: new version of libressl

This commit is contained in:
Toyam Cox 2016-03-25 17:36:05 -04:00
parent f057645e4d
commit 8ff86c7da7
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Template file for 'nix'
pkgname=nix
version=1.10
revision=4
revision=5
build_style=gnu-configure
# Use /nix/var as suggested by the official Manual.
configure_args="--localstatedir=/nix/var"
@ -13,8 +13,8 @@ makedepends="bzip2-devel libressl-devel sqlite-devel gc-devel libcurl-devel"
conf_files="/etc/nix/nix.conf"
# Create required build users/groups.
system_groups="nixbld"
system_accounts=
for f in $(seq 1 9); do
system_accounts="nixbld1"
for f in {2..9}; do
system_accounts+=" nixbld${f}"
eval export nixbld\${f}_pgroup="nixbld"
done