diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2019-02-11 23:20:07 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-02-11 23:36:15 +0000 |
commit | 6d35f1c6be54ecda0f93ad1a89e031e625860dc4 (patch) | |
tree | e342b59b3b6d2dae2a04bbd37447d3426bfc5790 /sys-apps/nix | |
parent | dev-libs/libinput: stable 1.12.6 for ppc, bug #677578 (diff) | |
download | gentoo-6d35f1c6be54ecda0f93ad1a89e031e625860dc4.tar.gz gentoo-6d35f1c6be54ecda0f93ad1a89e031e625860dc4.tar.bz2 gentoo-6d35f1c6be54ecda0f93ad1a89e031e625860dc4.zip |
sys-apps/nix: pass static shell into build container
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sys-apps/nix')
-rw-r--r-- | sys-apps/nix/nix-2.2.1-r1.ebuild (renamed from sys-apps/nix/nix-2.2.1.ebuild) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-apps/nix/nix-2.2.1.ebuild b/sys-apps/nix/nix-2.2.1-r1.ebuild index 7168bdd8d9a3..dfa1ac2e7c6d 100644 --- a/sys-apps/nix/nix-2.2.1.ebuild +++ b/sys-apps/nix/nix-2.2.1-r1.ebuild @@ -15,10 +15,12 @@ SLOT="0" #KEYWORDS="~amd64 ~x86" IUSE="+etc_profile +gc doc s3 sodium" +# sys-apps/busybox is needed for sandbox mount of /bin/sh RDEPEND=" app-arch/brotli app-arch/bzip2 app-arch/xz-utils + sys-apps/busybox[static] dev-db/sqlite dev-libs/editline:0= dev-libs/openssl:0= @@ -83,8 +85,6 @@ src_prepare() { } src_configure() { - local econf_args=() - if ! use s3; then # Disable automagic depend: bug #670256 export ac_cv_header_aws_s3_S3Client_h=no @@ -92,7 +92,7 @@ src_configure() { econf \ --localstatedir="${EPREFIX}"/nix/var \ $(use_enable gc) \ - "${args[@]}" + --with-sandbox-shell=/bin/busybox } src_compile() { |