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

taffybar: work around repeated arguments bug #41408

Merged
merged 1 commit into from Jun 17, 2018

Conversation

puffnfresh
Copy link
Contributor

Fixes #40013

Motivation for this change
Things done
  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Fits CONTRIBUTING.md.

@puffnfresh puffnfresh requested a review from peti as a code owner June 3, 2018 09:25
# Work around large number of repeated arguments
# https://github.com/NixOS/nixpkgs/issues/40013
taffybar = super.taffybar.overrideDerivation (drv: {
strictDeps = true;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Ericson2314 is this sensible?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes!

@peti
Copy link
Member

peti commented Jun 3, 2018

@GrahamcOfBorg build haskell.packages.ghc822.taffybar haskell.packages.ghc843.taffybar

@GrahamcOfBorg
Copy link

No attempt on x86_64-darwin (full log)

The following builds were skipped because they don't evaluate on x86_64-darwin: haskell.packages.ghc822.taffybar, haskell.packages.ghc843.taffybar

Partial log (click to expand)


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

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


@GrahamcOfBorg
Copy link

Failure on x86_64-linux (full log)

Attempted: haskell.packages.ghc822.taffybar, haskell.packages.ghc843.taffybar

Partial log (click to expand)

stripping (with command strip and flags -S) in /nix/store/r6sba9zqwp344hlf0y87agqvwzwm81a3-gi-gtk-hs-0.3.6.1/lib
patching script interpreter paths in /nix/store/r6sba9zqwp344hlf0y87agqvwzwm81a3-gi-gtk-hs-0.3.6.1
checking for references to /build in /nix/store/r6sba9zqwp344hlf0y87agqvwzwm81a3-gi-gtk-hs-0.3.6.1...
wrong ELF type
shrinking RPATHs of ELF executables and libraries in /nix/store/4ga474xanbz28gj69jkn0vwkvbn96zhw-gi-gtk-hs-0.3.6.1-doc
strip is /nix/store/92d2ifxcni4n3zx9s8wnkcjlvnx5ajlc-binutils-2.30/bin/strip
patching script interpreter paths in /nix/store/4ga474xanbz28gj69jkn0vwkvbn96zhw-gi-gtk-hs-0.3.6.1-doc
checking for references to /build in /nix/store/4ga474xanbz28gj69jkn0vwkvbn96zhw-gi-gtk-hs-0.3.6.1-doc...
cannot build derivation '/nix/store/bhibqr8f02blxd0vimkdqrvhnm8n112w-taffybar-2.1.0.drv': 1 dependencies couldn't be built
error: build of '/nix/store/4066c7kansf796rv50alv1aq0f82y6mx-taffybar-2.1.0.drv', '/nix/store/bhibqr8f02blxd0vimkdqrvhnm8n112w-taffybar-2.1.0.drv' failed

@GrahamcOfBorg
Copy link

No attempt on aarch64-linux (full log)

The following builds were skipped because they don't evaluate on aarch64-linux: haskell.packages.ghc822.taffybar, haskell.packages.ghc843.taffybar

Partial log (click to expand)


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

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


Copy link
Member

@peti peti left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to #41408 (comment) taffybar can't be compiled (due to broken dependencies). Did you test this PR?

@Ericson2314
Copy link
Member

Ericson2314 commented Jun 3, 2018

I opened #41420 to set this in all haskell derivations. I've been meaning to write an RFC to set it everywhere (and thus be able to remove it).

Copy link
Member

@Ericson2314 Ericson2314 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While I prefer #41420 as a more permanent solution, this is great if that proves too ambitious.

Copy link
Member

@peti peti left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to #41408 (comment) taffybar can't be compiled (due to broken dependencies). Did you test this PR?

@NixOS NixOS deleted a comment from GrahamcOfBorg Jun 4, 2018
@NixOS NixOS deleted a comment from GrahamcOfBorg Jun 4, 2018
@NixOS NixOS deleted a comment from GrahamcOfBorg Jun 4, 2018
@NixOS NixOS deleted a comment from GrahamcOfBorg Jun 4, 2018
@NixOS NixOS deleted a comment from GrahamcOfBorg Jun 4, 2018
@NixOS NixOS deleted a comment from GrahamcOfBorg Jun 4, 2018
@srhb
Copy link
Contributor

srhb commented Jun 7, 2018

Yes, this builds and works on current master (1befcae0dc3130021283aa47616fbb2bb67607e7) with no other changes or overlays.

@xeji
Copy link
Contributor

xeji commented Jun 17, 2018

@GrahamcOfBorg build taffybar

@GrahamcOfBorg
Copy link

No attempt on x86_64-darwin (full log)

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

Partial log (click to expand)


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

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowUnsupportedSystem = 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: taffybar

Partial log (click to expand)


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

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


@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: taffybar

Partial log (click to expand)

Warning: haddock-interfaces: /nix/store/j2k151dmalrlybgccjkxw9i63kxxang5-gi-atk-2.0.15/share/doc/x86_64-linux-ghc-8.2.2/gi-atk-2.0.15/html/gi-atk.haddock doesn't exist or isn't a file
Warning: haddock-html: /nix/store/j2k151dmalrlybgccjkxw9i63kxxang5-gi-atk-2.0.15/share/doc/x86_64-linux-ghc-8.2.2/gi-atk-2.0.15/html doesn't exist or isn't a directory
Warning: haddock-interfaces: /nix/store/9fd03cvs7nbdc8zd77fkiva0nsbjc7nl-gi-gdkx11-3.0.2/share/doc/x86_64-linux-ghc-8.2.2/gi-gdkx11-3.0.2/html/gi-gdkx11.haddock doesn't exist or isn't a file
Warning: haddock-html: /nix/store/9fd03cvs7nbdc8zd77fkiva0nsbjc7nl-gi-gdkx11-3.0.2/share/doc/x86_64-linux-ghc-8.2.2/gi-gdkx11-3.0.2/html doesn't exist or isn't a directory
Warning: haddock-interfaces: /nix/store/8r3rfyclp2i6w5scfhxblwj6ppkihsxm-gi-gtk-3.0.23/share/doc/x86_64-linux-ghc-8.2.2/gi-gtk-3.0.23/html/gi-gtk.haddock doesn't exist or isn't a file
Warning: haddock-html: /nix/store/8r3rfyclp2i6w5scfhxblwj6ppkihsxm-gi-gtk-3.0.23/share/doc/x86_64-linux-ghc-8.2.2/gi-gtk-3.0.23/html doesn't exist or isn't a directory
Warning: haddock-interfaces: /nix/store/3cxws1bxj3sm8ma81zyazrr67i9fx37s-gi-dbusmenugtk3-0.4.2/share/doc/x86_64-linux-ghc-8.2.2/gi-dbusmenugtk3-0.4.2/html/gi-dbusmenugtk3.haddock doesn't exist or isn't a file
Warning: haddock-html: /nix/store/3cxws1bxj3sm8ma81zyazrr67i9fx37s-gi-dbusmenugtk3-0.4.2/share/doc/x86_64-linux-ghc-8.2.2/gi-dbusmenugtk3-0.4.2/html doesn't exist or isn't a directory
building '/nix/store/9iwk6cv3279px9nx1yvpp3s1civq8jr1-taffybar-with-packages.drv'...
/nix/store/2ldqdjxv430033dsgq5i293w8njfbqnl-taffybar-with-packages

@xeji
Copy link
Contributor

xeji commented Jun 17, 2018

@GrahamcOfBorg build haskell.packages.ghc822.taffybar haskell.packages.ghc843.taffybar

@GrahamcOfBorg
Copy link

No attempt on x86_64-darwin (full log)

The following builds were skipped because they don't evaluate on x86_64-darwin: haskell.packages.ghc822.taffybar, haskell.packages.ghc843.taffybar

Partial log (click to expand)


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

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowUnsupportedSystem = 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: haskell.packages.ghc822.taffybar, haskell.packages.ghc843.taffybar

Partial log (click to expand)


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

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


@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: haskell.packages.ghc822.taffybar, haskell.packages.ghc843.taffybar

Partial log (click to expand)

shrinking RPATHs of ELF executables and libraries in /nix/store/vfqqj3yzmz5x8wm1nnji20j67h2xfa45-taffybar-2.1.2-data
strip is /nix/store/4mf2xm9p32lzrim927yk92xhx35yaz62-binutils-2.30/bin/strip
patching script interpreter paths in /nix/store/vfqqj3yzmz5x8wm1nnji20j67h2xfa45-taffybar-2.1.2-data
checking for references to /build in /nix/store/vfqqj3yzmz5x8wm1nnji20j67h2xfa45-taffybar-2.1.2-data...
shrinking RPATHs of ELF executables and libraries in /nix/store/y02c5p9zqhqwvilj0j8l2dg5vdxmfal7-taffybar-2.1.2-doc
strip is /nix/store/4mf2xm9p32lzrim927yk92xhx35yaz62-binutils-2.30/bin/strip
patching script interpreter paths in /nix/store/y02c5p9zqhqwvilj0j8l2dg5vdxmfal7-taffybar-2.1.2-doc
checking for references to /build in /nix/store/y02c5p9zqhqwvilj0j8l2dg5vdxmfal7-taffybar-2.1.2-doc...
/nix/store/8r6cj4v19nyjv98yfhw0vpi0lqcl22px-taffybar-2.1.2
/nix/store/y7asn3p0gs50agkaj3zfwwy5k45193kz-taffybar-2.1.2

@xeji
Copy link
Contributor

xeji commented Jun 17, 2018

Seems to build fine.

@xeji xeji merged commit 045686f into NixOS:master Jun 17, 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

6 participants