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

Add versions to packages missing it #41009

Merged
merged 11 commits into from May 25, 2018

Conversation

matthewbauer
Copy link
Member

@matthewbauer matthewbauer commented May 24, 2018

Motivation for this change

See #41007 for more details.

Most of these were found with this command:

nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$'

nixpkgs-unstable:

$ nix-env -qa -f channel:nixpkgs-unstable | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$' | wc -l
88

PR HEAD:

$ nix-env -qa -f https://github.com/matthewbauer/nixpkgs/archive/normalize-names.tar.gz | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$' | wc -l
18

@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: renoise

Partial log (click to expand)


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

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


@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: renoise

Partial log (click to expand)


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

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

Partial log (click to expand)


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

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


@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: atlassian-cli, okteta, renoise

Partial log (click to expand)


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

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


@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: okteta, renoise

Partial log (click to expand)


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

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


Copy link
Member

@lukateras lukateras left a comment

Choose a reason for hiding this comment

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

LGTM, other than a few things I've mentioned. Also, feel free to remove commits I've added to this branch if those get in the way.

@@ -56,7 +56,7 @@ let
};
in
buildFHSUserEnv {
name = "mist";
inherit name;
Copy link
Member

Choose a reason for hiding this comment

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

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes we should do a suffix here. Something like "mist-wrapper"?

Copy link
Member

Choose a reason for hiding this comment

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

I thought maybe about giving unwrapped version a suffix, like -unwrapped.

@@ -117,7 +117,7 @@ in if configure == null then weechat else
ln -s $plugin $out/plugins
done
'';
in (writeScriptBin "weechat" ''
in (writeScriptBin "weechat-${stdenv.lib.getVersion weechat}" ''
Copy link
Member

Choose a reason for hiding this comment

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

This would change script's name.

@@ -51,7 +51,7 @@ let

in
stdenv.mkDerivation {
inherit name;
name = "${name}-${stdenv.lib.getVersion neovim}";
Copy link
Member

Choose a reason for hiding this comment

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

This seems to cause name clash between unwrapped and wrapped version.

@@ -77,7 +77,7 @@ let

# Lightworks expects some files in /usr/share/lightworks
in buildFHSUserEnv rec {
name = "lightworks";
name = "lightworks-${stdenv.lib.getVersion lightworks}";
Copy link
Member

Choose a reason for hiding this comment

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

Same concern.

let

emacs = emacsPackagesNg.emacsWithPackages (epkgs: [ epkgs.cask-package-toolset ]);
cpt = emacsPackagesNg.cask-package-toolset;

in writeScriptBin "cask" ''
in writeScriptBin "cask-${lib.getVersion emacs}" ''
Copy link
Member

Choose a reason for hiding this comment

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

This would rename the script.

Copy link
Member Author

Choose a reason for hiding this comment

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

Ok good catch! I'll just leave that out then.

@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: atlassian-cli, okteta, renoise, simgrid

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: okteta

The following builds were skipped because they don't evaluate on x86_64-linux: atlassian-cli, renoise

Partial log (click to expand)

shrinking /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/lib/libkasten3okteta1gui.so.0.3.1
shrinking /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/lib/libkasten3controllers.so.0.3.0
shrinking /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/bin/okteta
strip is /nix/store/j75dgadrff2d1fyc4fczmcgqkid2imdx-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/lib  /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/bin
patching script interpreter paths in /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3
/nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/bin/struct2osd: interpreter directive changed from "/bin/sh" to "/nix/store/xn5gv3lpfy91yvfy9b0i7klfcxh9xskz-bash-4.4-p19/bin/sh"
checking for references to /build in /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3...
postPatchMkspecs
postPatchMkspecs

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: okteta

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

Partial log (click to expand)

shrinking /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/lib/libkasten3okteta1gui.so.0.3.1
shrinking /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/lib/qt-5.10/plugins/oktetapart.so
shrinking /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/lib/qt-5.10/plugins/designer/oktetawidgets.so
strip is /nix/store/j75dgadrff2d1fyc4fczmcgqkid2imdx-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/lib  /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/bin
patching script interpreter paths in /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3
/nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3/bin/struct2osd: interpreter directive changed from "/bin/sh" to "/nix/store/xn5gv3lpfy91yvfy9b0i7klfcxh9xskz-bash-4.4-p19/bin/sh"
checking for references to /build in /nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3...
postPatchMkspecs
postPatchMkspecs

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: okteta, simgrid

The following builds were skipped because they don't evaluate on x86_64-linux: atlassian-cli, renoise

Partial log (click to expand)

shrinking /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/bin/graphicator
shrinking /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/bin/smpimain
shrinking /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/lib/libsimgrid.so.3.17
gzipping man pages under /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/share/man/
strip is /nix/store/j75dgadrff2d1fyc4fczmcgqkid2imdx-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/lib  /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/bin
patching script interpreter paths in /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17
checking for references to /build in /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17...
/nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3
/nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: okteta, simgrid

The following builds were skipped because they don't evaluate on x86_64-linux: atlassian-cli, renoise

Partial log (click to expand)

  { nixpkgs.config.allowUnfree = true; }
in configuration.nix to override this.

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


/nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3
/nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: okteta, simgrid, yuicompressor

The following builds were skipped because they don't evaluate on x86_64-linux: atlassian-cli, renoise

Partial log (click to expand)

shrinking /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/lib/libsimgrid.so.3.17
gzipping man pages under /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/share/man/
strip is /nix/store/j75dgadrff2d1fyc4fczmcgqkid2imdx-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/lib  /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17/bin
patching script interpreter paths in /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17
checking for references to /build in /nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17...
building '/nix/store/p0dnczp5c37hz6lksj6b9cl85r4qvbz5-yuicompressor-2.4.8.drv'...
/nix/store/x566ksywp0rwsffk9r379i68r7vry1ql-okteta-17.12.3
/nix/store/35kmyvj69pqgiw2lm2bngw4v8x6vmalb-simgrid-3.17
/nix/store/qmdp57lqrjcnyjrch6rr2vycqg27caqc-yuicompressor-2.4.8

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: okteta

The following builds were skipped because they don't evaluate on aarch64-linux: atlassian-cli, renoise, simgrid, yuicompressor

Partial log (click to expand)


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


these derivations will be built:
  /nix/store/xlzbdbska6j2kv4s6wpvms0qgd5z84sd-okteta-17.12.3.drv
waiting for locks or build slots...
/nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: okteta

The following builds were skipped because they don't evaluate on aarch64-linux: atlassian-cli, renoise, simgrid

Partial log (click to expand)

  { allowUnsupportedSystem = true; }
to ~/.config/nixpkgs/config.nix.


these derivations will be built:
  /nix/store/s05763fdrvfg8yd0l6sgfzx91ik564y8-knewstuff-5.46.0.drv
  /nix/store/xassfis45s3vnyn4xg4gifv52g2badix-kinit-5.46.0.drv
  /nix/store/xlzbdbska6j2kv4s6wpvms0qgd5z84sd-okteta-17.12.3.drv
waiting for locks or build slots...
/nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: okteta

The following builds were skipped because they don't evaluate on aarch64-linux: atlassian-cli, renoise, simgrid

Partial log (click to expand)


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


these derivations will be built:
  /nix/store/xlzbdbska6j2kv4s6wpvms0qgd5z84sd-okteta-17.12.3.drv
waiting for locks or build slots...
/nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: okteta

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

Partial log (click to expand)


these derivations will be built:
  /nix/store/qf9l91cak7r9vwg4iwdp4kf95q6glmj7-qca-qt5-2.1.3.drv
  /nix/store/rgcrhw9w7zq4ayn9s020zp0bilknnjbq-kcmutils-5.46.0.drv
  /nix/store/s05763fdrvfg8yd0l6sgfzx91ik564y8-knewstuff-5.46.0.drv
  /nix/store/y657vfjb5b3yb5qrvi5wglwdp9x8l5n0-kparts-5.46.0.drv
  /nix/store/xassfis45s3vnyn4xg4gifv52g2badix-kinit-5.46.0.drv
  /nix/store/xlzbdbska6j2kv4s6wpvms0qgd5z84sd-okteta-17.12.3.drv
waiting for locks or build slots...
/nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: okteta

The following builds were skipped because they don't evaluate on aarch64-linux: atlassian-cli, renoise

Partial log (click to expand)

shrinking /nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3/lib/libkasten3controllers.so.0.3.0
shrinking /nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3/lib/libkasten3gui.so.0.3.0
shrinking /nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3/lib/libkasten3core.so.0.3.0
strip is /nix/store/jk6j4lh9v5mvjdbdc35sj0zffhhf6s56-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3/lib  /nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3/bin
patching script interpreter paths in /nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3
/nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3/bin/struct2osd: interpreter directive changed from "/bin/sh" to "/nix/store/l4w7xwjy2nmk31fl5kgyy7gg8z7l9n8z-bash-4.4-p19/bin/sh"
checking for references to /build in /nix/store/maf8w4gddbcaq4qmx415x58ssf0s0h39-okteta-17.12.3...
postPatchMkspecs
postPatchMkspecs

@GrahamcOfBorg
Copy link

Failure on x86_64-darwin (full log)

Attempted: yuicompressor

The following builds were skipped because they don't evaluate on x86_64-darwin: atlassian-cli, okteta, renoise, simgrid

Partial log (click to expand)

cannot build derivation '/nix/store/lh4vdysygsjz5sqvy7ggcdf6gwhrzwhq-hook.drv': 3 dependencies couldn't be built
cannot build derivation '/nix/store/ljaq2vqr19sqvz7k0sfry4k1bs0yhcw9-libiconv-osx-10.11.6.drv': 2 dependencies couldn't be built
cannot build derivation '/nix/store/gmirllb9xrqvqwp0dxcf743yn3rz2fi9-libpng-apng-1.6.34.drv': 3 dependencies couldn't be built
cannot build derivation '/nix/store/ykk5hq7nvb7zilzcaw1gp4qnflmrfg3l-unzip-6.0.drv': 3 dependencies couldn't be built
cannot build derivation '/nix/store/501r8iix6ij5aiddq5zw86csc36spib8-which-2.21.drv': 2 dependencies couldn't be built
cannot build derivation '/nix/store/rdwnsmfgb9hr5qnbkqf3ccnbb8248jjf-pkg-config-0.29.2.drv': 3 dependencies couldn't be built
cannot build derivation '/nix/store/1sqmr9wy3v2pfjh6mn3yhi3pxrl85i1b-freetype-2.9.drv': 9 dependencies couldn't be built
cannot build derivation '/nix/store/vqy4ba53m18wk10vanxqyrpq63cagpyb-zulu1.8.0_121-8.20.0.5.drv': 5 dependencies couldn't be built
cannot build derivation '/nix/store/1ciih3283kdy5kk039s8kf6p7ggprrsy-yuicompressor-2.4.8.drv': 4 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/1ciih3283kdy5kk039s8kf6p7ggprrsy-yuicompressor-2.4.8.drv' failed

@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: atlassian-cli, okteta, renoise, simgrid

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.


@matthewbauer matthewbauer requested a review from peti as a code owner May 25, 2018 09:23
@@ -1,7 +1,7 @@
{ stdenv, R, makeWrapper, recommendedPackages, packages }:

stdenv.mkDerivation {
name = R.name + "-wrapper";
stdenv.lib.appendToName "wrapper" (stdenv.mkDerivation {
Copy link
Member

Choose a reason for hiding this comment

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

Why is this version better than what we have now? They seem to give the same result.

Copy link
Contributor

@dezgeg dezgeg May 25, 2018

Choose a reason for hiding this comment

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

I agree, if they are functionally equivalent I like the old version more given that it avoids one level of parenthesis nesting.

Copy link
Member Author

Choose a reason for hiding this comment

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

The difference is where the version goes. AppendToName will put this before the version.

Copy link
Member

Choose a reason for hiding this comment

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

Ah, you are right. That is the difference, indeed. :-)

As it happens, I actually don't want that change. I want the package name to be R and the version to be 3.5.0-wrapper. I don't want the package to be called R-wrapper.

Copy link
Member Author

Choose a reason for hiding this comment

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

Ok. Any opinions on the other 3? My assumption was that they were all mistakes, not realizing that the version is at the end of name.

Copy link
Member

Choose a reason for hiding this comment

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

Thanks! I have no opinion on those other 3 cases, I don't maintain those packages.

@GrahamcOfBorg
Copy link

Failure on x86_64-darwin (full log)

Attempted: gimp, yuicompressor

The following builds were skipped because they don't evaluate on x86_64-darwin: atlassian-cli, okteta, renoise, simgrid

Partial log (click to expand)

cannot build derivation '/nix/store/nsrk5ynx44f01yhz7rlllfd162nxxb0l-vala-0.40.6.drv': 11 dependencies couldn't be built
cannot build derivation '/nix/store/8npwlr5g8q1z28rivzngxnccrhd6yfpn-gexiv2-0.10.8.drv': 9 dependencies couldn't be built
cannot build derivation '/nix/store/khs6l2xiw6yb9grwrdpsay2ikza8498r-gtk-doc-1.28.drv': 15 dependencies couldn't be built
cannot build derivation '/nix/store/j0580ahlnfaqfl9vyw5f2dlsxf5v8hv6-librsvg-2.42.2.drv': 17 dependencies couldn't be built
cannot build derivation '/nix/store/qh8486avh5pig2fi6624nadc1sapmrsc-gegl-0.4.2.drv': 20 dependencies couldn't be built
cannot build derivation '/nix/store/w2ddh334ff33g0sxhgcd2237l7yzr1n0-gtk-mac-integration-2.0.8.drv': 8 dependencies couldn't be built
cannot build derivation '/nix/store/1i6ilzjqfk5b4b8phfrw49b7xcc584s3-imagemagick-6.9.9-34.drv': 21 dependencies couldn't be built
cannot build derivation '/nix/store/ahmqva3jpykm8f0d9s5iqi9lh38723wl-libwmf-0.2.8.4.drv': 10 dependencies couldn't be built
cannot build derivation '/nix/store/gz1h8ipflq8x6bvlcap86f5y3wb0j8df-gimp-2.10.2.drv': 45 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/1ciih3283kdy5kk039s8kf6p7ggprrsy-yuicompressor-2.4.8.drv', '/nix/store/gz1h8ipflq8x6bvlcap86f5y3wb0j8df-gimp-2.10.2.drv' failed

@GrahamcOfBorg
Copy link

Failure on x86_64-linux (full log)

Attempted: gimp, okteta, simgrid, yuicompressor

The following builds were skipped because they don't evaluate on x86_64-linux: atlassian-cli, renoise

Partial log (click to expand)

cannot build derivation '/nix/store/6wz1nn5wfpdvyvc3l1dhynh4ln0ngncd-librsvg-2.42.2.drv': 2 dependencies couldn't be built
copying path '/nix/store/wlvlzq981a83hap04n74v2kcsh56gh96-glib-networking-2.56.0' from 'https://cache.nixos.org'...
cannot build derivation '/nix/store/26wb0lhlp5jg48fwlilhm3y52yy2ashw-gegl-0.4.2.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/vb03wv4ghxp7g1irn2sff3brcxzmmlza-imagemagick-6.9.9-34.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/yqsx51fvnxw0kgvbcd3mra3ip27ybdih-libwmf-0.2.8.4.drv': 1 dependencies couldn't be built
warning: unable to download 'https://cache.nixos.org/nar/1zlisyfzldg5z72rrysbqir2rzkwhja7dpwi33jsznm5zxax4biv.nar.xz': Error in the HTTP2 framing layer (16); retrying in 256 ms
copying path '/nix/store/src1b0zhq8jsp9ypr0m6q5zhmn4zyyxn-libproxy-0.4.15-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/xbdhm4yr1kzfn9nkvg9np4jkiiwcd0ss-glib-networking-2.56.0-dev' from 'https://cache.nixos.org'...
cannot build derivation '/nix/store/i9cl866zjdvlfaiash9vxw3w6d82c2s1-gimp-2.10.2.drv': 3 dependencies couldn't be built
error: build of '/nix/store/i9cl866zjdvlfaiash9vxw3w6d82c2s1-gimp-2.10.2.drv' failed

@@ -11,10 +11,6 @@ stdenv.mkDerivation {

buildInputs = [ perl ];

phases = [ "unpackPhase"
Copy link
Contributor

Choose a reason for hiding this comment

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

This phases = ... change should probably be split out of this PR.

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Attempted: gimp, okteta

The following builds were skipped because they don't evaluate on aarch64-linux: atlassian-cli, renoise, simgrid, yuicompressor

Partial log (click to expand)

   Compiling rustc_binaryen v0.0.0 (file:///build/rustc-1.25.0-src/src/librustc_binaryen)
   Compiling rustc_llvm v0.0.0 (file:///build/rustc-1.25.0-src/src/librustc_llvm)
building of '/nix/store/cyf5smwl1jwwcfma7pa4bl8s5hxya0q6-rustc-1.25.0.drv' timed out after 3600 seconds
cannot build derivation '/nix/store/i2sfms2lcqhxbb2jmia0ivxbkvzam5wq-cargo-0.26.0.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/wm7mgn2imk728g2ydqyqf3i987q5l0xs-librsvg-2.42.2.drv': 2 dependencies couldn't be built
cannot build derivation '/nix/store/rlkxn3h1q7x4was90j879flj5lzppasx-gegl-0.4.2.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/7liq5z5pibv747qiyl6xjk05yzy0dyh4-imagemagick-6.9.9-34.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/b9i5f4w6n16pbziv1w34dy9hb7cx9k4m-libwmf-0.2.8.4.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/gshp2xawnskf51yav1vqsimi7fhhjqg2-gimp-2.10.2.drv': 3 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/gshp2xawnskf51yav1vqsimi7fhhjqg2-gimp-2.10.2.drv' failed

@matthewbauer matthewbauer force-pushed the normalize-names branch 3 times, most recently from da6f0c9 to 398076b Compare May 25, 2018 19:48
@GrahamcOfBorg
Copy link

Failure on x86_64-linux (full log)

Attempted: gimp, okteta, simgrid, yuicompressor

The following builds were skipped because they don't evaluate on x86_64-linux: atlassian-cli, renoise

Partial log (click to expand)

[ 79%] Building CXX object lib/Target/NVPTX/CMakeFiles/LLVMNVPTXCodeGen.dir/NVPTXInstrInfo.cpp.o
[ 79%] Building CXX object lib/Target/Hexagon/MCTargetDesc/CMakeFiles/LLVMHexagonDesc.dir/HexagonMCDuplexInfo.cpp.o
building of '/nix/store/fhq548zlccsdrp8ixlkvwdi99mml7gm5-rustc-1.25.0.drv' timed out after 1800 seconds
cannot build derivation '/nix/store/01vaj7xai61zim83hm7dffyw11ssyi83-cargo-0.26.0.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/6wz1nn5wfpdvyvc3l1dhynh4ln0ngncd-librsvg-2.42.2.drv': 2 dependencies couldn't be built
cannot build derivation '/nix/store/26wb0lhlp5jg48fwlilhm3y52yy2ashw-gegl-0.4.2.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/vb03wv4ghxp7g1irn2sff3brcxzmmlza-imagemagick-6.9.9-34.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/yqsx51fvnxw0kgvbcd3mra3ip27ybdih-libwmf-0.2.8.4.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/i9cl866zjdvlfaiash9vxw3w6d82c2s1-gimp-2.10.2.drv': 3 dependencies couldn't be built
error: build of '/nix/store/i9cl866zjdvlfaiash9vxw3w6d82c2s1-gimp-2.10.2.drv' failed

@matthewbauer matthewbauer changed the base branch from master to staging May 25, 2018 20:46
matthewbauer and others added 11 commits May 25, 2018 15:48
Lots of packages are missing versions in their name. This adds them
where appropriate. These were found with this command:

 $ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$'

See issue NixOS#41007.
Uses the POSIX standard 1003.1-2008 as version number. It can be
accessed for free at http://pubs.opengroup.org/onlinepubs/9699919799/.
Using appendToName preserves the version at the end of the name.
All gimp plugins are now prefixed with "gimp-plugin-" to make them
more clear.
@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Attempted: gimp, okteta

The following builds were skipped because they don't evaluate on aarch64-linux: atlassian-cli, renoise, simgrid, yuicompressor

Partial log (click to expand)

   Compiling rustc_const_math v0.0.0 (file:///build/rustc-1.25.0-src/src/librustc_const_math)
   Compiling syntax_ext v0.0.0 (file:///build/rustc-1.25.0-src/src/libsyntax_ext)
building of '/nix/store/cyf5smwl1jwwcfma7pa4bl8s5hxya0q6-rustc-1.25.0.drv' timed out after 3600 seconds
cannot build derivation '/nix/store/i2sfms2lcqhxbb2jmia0ivxbkvzam5wq-cargo-0.26.0.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/wm7mgn2imk728g2ydqyqf3i987q5l0xs-librsvg-2.42.2.drv': 2 dependencies couldn't be built
cannot build derivation '/nix/store/rlkxn3h1q7x4was90j879flj5lzppasx-gegl-0.4.2.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/7liq5z5pibv747qiyl6xjk05yzy0dyh4-imagemagick-6.9.9-34.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/b9i5f4w6n16pbziv1w34dy9hb7cx9k4m-libwmf-0.2.8.4.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/gshp2xawnskf51yav1vqsimi7fhhjqg2-gimp-2.10.2.drv': 3 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/gshp2xawnskf51yav1vqsimi7fhhjqg2-gimp-2.10.2.drv' failed

@GrahamcOfBorg
Copy link

Failure on x86_64-darwin (full log)

Attempted: gimp, yuicompressor

The following builds were skipped because they don't evaluate on x86_64-darwin: atlassian-cli, okteta, renoise, simgrid

Partial log (click to expand)

cannot build derivation '/nix/store/nsrk5ynx44f01yhz7rlllfd162nxxb0l-vala-0.40.6.drv': 11 dependencies couldn't be built
cannot build derivation '/nix/store/8npwlr5g8q1z28rivzngxnccrhd6yfpn-gexiv2-0.10.8.drv': 9 dependencies couldn't be built
cannot build derivation '/nix/store/khs6l2xiw6yb9grwrdpsay2ikza8498r-gtk-doc-1.28.drv': 15 dependencies couldn't be built
cannot build derivation '/nix/store/j0580ahlnfaqfl9vyw5f2dlsxf5v8hv6-librsvg-2.42.2.drv': 17 dependencies couldn't be built
cannot build derivation '/nix/store/qh8486avh5pig2fi6624nadc1sapmrsc-gegl-0.4.2.drv': 20 dependencies couldn't be built
cannot build derivation '/nix/store/w2ddh334ff33g0sxhgcd2237l7yzr1n0-gtk-mac-integration-2.0.8.drv': 8 dependencies couldn't be built
cannot build derivation '/nix/store/1i6ilzjqfk5b4b8phfrw49b7xcc584s3-imagemagick-6.9.9-34.drv': 21 dependencies couldn't be built
cannot build derivation '/nix/store/ahmqva3jpykm8f0d9s5iqi9lh38723wl-libwmf-0.2.8.4.drv': 10 dependencies couldn't be built
cannot build derivation '/nix/store/gz1h8ipflq8x6bvlcap86f5y3wb0j8df-gimp-2.10.2.drv': 45 dependencies couldn't be built
error: build of '/nix/store/1ciih3283kdy5kk039s8kf6p7ggprrsy-yuicompressor-2.4.8.drv', '/nix/store/gz1h8ipflq8x6bvlcap86f5y3wb0j8df-gimp-2.10.2.drv' failed

@matthewbauer matthewbauer merged commit 98f2f08 into NixOS:staging May 25, 2018
@GrahamcOfBorg
Copy link

Failure on x86_64-darwin (full log)

Attempted: gimp, yuicompressor

The following builds were skipped because they don't evaluate on x86_64-darwin: atlassian-cli, okteta, renoise, simgrid

Partial log (click to expand)

cannot build derivation '/nix/store/g97hj7j9ww77yzi3n8njjbj8d9h8y6hg-gtk+3-3.22.29.drv': 27 dependencies couldn't be built
cannot build derivation '/nix/store/gssgcir2fawsy54w070ih42jx3bfv0i2-libgsf-1.14.42.drv': 13 dependencies couldn't be built
cannot build derivation '/nix/store/qbam84clwxh0bgyikjzci6jrv9mymnpx-gtk-mac-integration-2.0.8.drv': 8 dependencies couldn't be built
cannot build derivation '/nix/store/sbx533sv29zr1n2x9sl0fkz7cxs3pifr-librsvg-2.42.4.drv': 17 dependencies couldn't be built
cannot build derivation '/nix/store/dl90c403h4dphfgrn6fpgc5gxndv7hzs-python2.7-pygtk-2.24.0.drv': 11 dependencies couldn't be built
cannot build derivation '/nix/store/mm7ylnryqh8q18j0axf6ldpgqvxphq8n-gegl-0.4.2.drv': 20 dependencies couldn't be built
cannot build derivation '/nix/store/bih23gfh8hm1r86kbd3c277fbbkk8ra5-imagemagick-6.9.9-34.drv': 21 dependencies couldn't be built
cannot build derivation '/nix/store/mmy3szw9936d6y70p22dgiriq29m6ips-libwmf-0.2.8.4.drv': 10 dependencies couldn't be built
cannot build derivation '/nix/store/jcqa531sqxwcnlpbr8xxx5darz5ypsfa-gimp-2.10.2.drv': 45 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/9klbafc7hzwy7fm4lknhdbcl4zcgzhg4-yuicompressor-2.4.8.drv', '/nix/store/jcqa531sqxwcnlpbr8xxx5darz5ypsfa-gimp-2.10.2.drv' failed

@GrahamcOfBorg
Copy link

Failure on x86_64-linux (full log)

Attempted: gimp, okteta, simgrid, yuicompressor

The following builds were skipped because they don't evaluate on x86_64-linux: atlassian-cli, renoise

Partial log (click to expand)

shrinking /nix/store/ws2s5sairmwv793j7msjnmjy7lsk33gm-okteta-17.12.3/lib/qt-5.10/plugins/oktetapart.so
shrinking /nix/store/ws2s5sairmwv793j7msjnmjy7lsk33gm-okteta-17.12.3/lib/qt-5.10/plugins/designer/oktetawidgets.so
strip is /nix/store/92d2ifxcni4n3zx9s8wnkcjlvnx5ajlc-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/ws2s5sairmwv793j7msjnmjy7lsk33gm-okteta-17.12.3/lib  /nix/store/ws2s5sairmwv793j7msjnmjy7lsk33gm-okteta-17.12.3/bin
patching script interpreter paths in /nix/store/ws2s5sairmwv793j7msjnmjy7lsk33gm-okteta-17.12.3
/nix/store/ws2s5sairmwv793j7msjnmjy7lsk33gm-okteta-17.12.3/bin/struct2osd: interpreter directive changed from "/bin/sh" to "/nix/store/m47apl3hq3i52fzy2cz24378p0xn4lyx-bash-4.4-p19/bin/sh"
checking for references to /build in /nix/store/ws2s5sairmwv793j7msjnmjy7lsk33gm-okteta-17.12.3...
postPatchMkspecs
postPatchMkspecs
error: build of '/nix/store/8ip70vy75x8k9yvx6ya3baq75y7jmchr-gimp-2.10.2.drv' failed

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Attempted: gimp, okteta

The following builds were skipped because they don't evaluate on aarch64-linux: atlassian-cli, renoise, simgrid, yuicompressor

Partial log (click to expand)

shrinking /nix/store/rjz10wip1gacmyqpqhh9ddjw5yamw096-okteta-17.12.3/lib/libkasten3gui.so.0.3.0
shrinking /nix/store/rjz10wip1gacmyqpqhh9ddjw5yamw096-okteta-17.12.3/lib/libkasten3core.so.0.3.0
strip is /nix/store/8yfik687kfccisxnad42j19lfb7ij9b4-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/rjz10wip1gacmyqpqhh9ddjw5yamw096-okteta-17.12.3/lib  /nix/store/rjz10wip1gacmyqpqhh9ddjw5yamw096-okteta-17.12.3/bin
patching script interpreter paths in /nix/store/rjz10wip1gacmyqpqhh9ddjw5yamw096-okteta-17.12.3
/nix/store/rjz10wip1gacmyqpqhh9ddjw5yamw096-okteta-17.12.3/bin/struct2osd: interpreter directive changed from "/bin/sh" to "/nix/store/vnb8q2h7951gd551nm2vq2g6n8296g5b-bash-4.4-p19/bin/sh"
checking for references to /build in /nix/store/rjz10wip1gacmyqpqhh9ddjw5yamw096-okteta-17.12.3...
postPatchMkspecs
postPatchMkspecs
�[31;1merror:�[0m build of '/nix/store/kscydi9991bq48pnp3vig23v9ljhb9xq-gimp-2.10.2.drv' failed

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

5 participants