Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build more commands from Apple's system_cmds #38715

Merged
merged 3 commits into from Apr 11, 2018

Conversation

matthewbauer
Copy link
Member

Motivation for this change

This adds getconf as well as a few other commands.

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: openbsm, openpam

Partial log (click to expand)

shrinking /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/lib/auditfilter_noop.so.0.0.0
shrinking /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/sbin/auditfilterd
shrinking /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/sbin/auditreduce
shrinking /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/sbin/praudit
gzipping man pages under /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/share/man/
strip is /nix/store/fzcs0fn6bb04m82frhlb78nc03ny3w55-binutils-2.28.1/bin/strip
stripping (with command strip and flags -S) in /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/lib  /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/sbin
patching script interpreter paths in /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1
checking for references to /build in /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1...
moving /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/sbin/* to /nix/store/ynsc3c60yzlg75p9j1jgi2i6qz3fqdfa-openbsm-1.1/bin

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: openbsm, openpam

Partial log (click to expand)

shrinking /nix/store/pmvxnr1kk3kajcydphybdmqs83mqad7i-openpam-20170430/lib/pam_permit.so.2.0.0
shrinking /nix/store/pmvxnr1kk3kajcydphybdmqs83mqad7i-openpam-20170430/lib/pam_deny.so.2.0.0
shrinking /nix/store/pmvxnr1kk3kajcydphybdmqs83mqad7i-openpam-20170430/lib/libpam.so.2.0.0
gzipping man pages under /nix/store/pmvxnr1kk3kajcydphybdmqs83mqad7i-openpam-20170430/share/man/
strip is /nix/store/3zq400fri5dv7d30lpxlqm2v9y1iis6j-binutils-2.28.1/bin/strip
stripping (with command strip and flags -S) in /nix/store/pmvxnr1kk3kajcydphybdmqs83mqad7i-openpam-20170430/lib
patching script interpreter paths in /nix/store/pmvxnr1kk3kajcydphybdmqs83mqad7i-openpam-20170430
checking for references to /build in /nix/store/pmvxnr1kk3kajcydphybdmqs83mqad7i-openpam-20170430...
/nix/store/v6glymbyv1ca3lc3ibzbzqrgdw2idx1f-openbsm-1.1
/nix/store/pmvxnr1kk3kajcydphybdmqs83mqad7i-openpam-20170430

@GrahamcOfBorg
Copy link

Success on x86_64-darwin (full log)

Attempted: openbsm, openpam

Partial log (click to expand)

make[2]: Leaving directory '/private/tmp/nix-build-openbsm-1.1.drv-0/source'
make[1]: Leaving directory '/private/tmp/nix-build-openbsm-1.1.drv-0/source'
post-installation fixup
gzipping man pages under /nix/store/na3v6h3w8g3qys37s03p1vh4r8sfqwy8-openbsm-1.1/share/man/
strip is /nix/store/0fzpxnsanc02i4jsb1yhchjp4p62b2n3-cctools-binutils-darwin/bin/strip
stripping (with command strip and flags -S) in /nix/store/na3v6h3w8g3qys37s03p1vh4r8sfqwy8-openbsm-1.1/lib  /nix/store/na3v6h3w8g3qys37s03p1vh4r8sfqwy8-openbsm-1.1/sbin
patching script interpreter paths in /nix/store/na3v6h3w8g3qys37s03p1vh4r8sfqwy8-openbsm-1.1
moving /nix/store/na3v6h3w8g3qys37s03p1vh4r8sfqwy8-openbsm-1.1/sbin/* to /nix/store/na3v6h3w8g3qys37s03p1vh4r8sfqwy8-openbsm-1.1/bin
/nix/store/na3v6h3w8g3qys37s03p1vh4r8sfqwy8-openbsm-1.1
/nix/store/y0dk3fjjb9y53qp6kxl3gdbfff3wva3v-openpam-20170430

@matthewbauer
Copy link
Member Author

@GrahamcOfBorg build darwin.system_cmds

@GrahamcOfBorg
Copy link

No attempt on x86_64-linux (full log)

The following builds were skipped because they don't evaluate on x86_64-linux: darwin.system_cmds

Partial log (click to expand)


a) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.


@GrahamcOfBorg
Copy link

No attempt on aarch64-linux (full log)

The following builds were skipped because they don't evaluate on aarch64-linux: darwin.system_cmds

Partial log (click to expand)


a) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.


@GrahamcOfBorg
Copy link

Success on x86_64-darwin (full log)

Attempted: darwin.system_cmds

Partial log (click to expand)

Building zdump
Building zic
Building zprint
installing
post-installation fixup
gzipping man pages under /nix/store/2jjhjj9frhw4zw9nsc8xn0405w58qzlv-system_cmds-osx-10.11.6/share/man/
strip is /nix/store/0fzpxnsanc02i4jsb1yhchjp4p62b2n3-cctools-binutils-darwin/bin/strip
stripping (with command strip and flags -S) in /nix/store/2jjhjj9frhw4zw9nsc8xn0405w58qzlv-system_cmds-osx-10.11.6/bin
patching script interpreter paths in /nix/store/2jjhjj9frhw4zw9nsc8xn0405w58qzlv-system_cmds-osx-10.11.6
/nix/store/2jjhjj9frhw4zw9nsc8xn0405w58qzlv-system_cmds-osx-10.11.6

@shlevy
Copy link
Member

shlevy commented Apr 11, 2018

👍

@matthewbauer matthewbauer merged commit 19a6f0e into NixOS:master Apr 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants