- Oct 21, 2015
-
-
Jude Taylor authored
-
Jude Taylor authored
-
Jude Taylor authored
-
Jude Taylor authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
This makes it consistent with the Nixpkgs fetchurl and makes it work in chroots. We don't need verification because the hash of the result is checked anyway.
-
Eelco Dolstra authored
The stack allocated for the builder was way too small (32 KB). This is sufficient for normal derivations, because they just do some setup and then exec() the actual builder. But for the fetchurl builtin derivation it's not enough. Also, allocating the stack on the caller's stack was fishy business.
-
- Oct 09, 2015
-
-
Eelco Dolstra authored
Needed by Hydra.
-
- Oct 08, 2015
-
-
Tuomas Tynkkynen authored
This allows building a Raspberry Pi image on modern, faster boards.
-
Eelco Dolstra authored
-
Mathnerd314 authored
-
Anders Claesson authored
-
Eelco Dolstra authored
CURLOPT_XFERINFOFUNCTION isn't widely supported yet. http://hydra.nixos.org/build/26679495
-
- Oct 07, 2015
-
-
Eelco Dolstra authored
-
Eelco Dolstra authored
This allows overriding the name component of the resulting Nix store path, which is necessary if the base name of the URI contains "illegal" characters.
-
Eelco Dolstra authored
This is in particular useful for fetchFromGitHub et al., ensuring that the store path produced by nix-prefetch-url corresponds to what those functions expect.
-
Eelco Dolstra authored
This allows nix-prefetch-url to prefetch the output of fetchzip and its wrappers (like fetchFromGitHub). For example: $ nix-prefetch-url --unpack https://github.com/NixOS/patchelf/archive/0.8.tar.gz or from a Nix expression: $ nix-prefetch-url -A nix-repl.src In the latter case, --unpack can be omitted because nix-repl.src is a fetchFromGitHub derivation and thus has "outputHashMode" set to "recursive".
-
- Oct 06, 2015
-
-
Eelco Dolstra authored
-
- Oct 05, 2015
-
-
Eelco Dolstra authored
Update prerequisites-source.xml
- Oct 01, 2015
-
-
Eelco Dolstra authored
For example, $ nix-prefetch-url -A hello.src will prefetch the file specified by the fetchurl call in the attribute ‘hello.src’ from the Nix expression in the current directory. This differs from ‘nix-build -A hello.src’ in that it doesn't verify the hash. You can also specify a path to the Nix expression: $ nix-prefetch-url ~/Dev/nixpkgs -A hello.src List elements (typically used in ‘patches’ attributes) also work: $ nix-prefetch-url -A portmidi.patches.0
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
- Sep 27, 2015
-
-
Eelco Dolstra authored
Also set CURLOPT_SSL_VERIFYHOST=0 when "verify-https-binary-caches" is false
-
- Sep 25, 2015
-
-
Utku Demir authored
This makes that option even more insecure, by also not checking the SSL host. But without this parameter, one can still get SSL errors even when "verify-https-binary-caches" is false, which is unexpected IMO.
-
Eelco Dolstra authored
release: fix #652 - PDF build after dblatex updates
-
Vladimír Čunát authored
... while not changing behavior when used with older nixpkgs.
-
- Sep 17, 2015
-
-
Eelco Dolstra authored
-
Eelco Dolstra authored
nix-env --upgrade improvements
-
Vladimír Čunát authored
It was strange to show "upgrading" when the version was getting lower. This is left on "upgrading" when the versions are the same, as I can't see any better wording.
-
Vladimír Čunát authored
-
Vladimír Čunát authored
Until now, if one explicitly installed a low-priority version, nix-env --upgrade would downgrade it by default and even with --leq. Let's never accept an upgrade with version not matching the upgradeType. Additionally, let's never decrease the priority of an installed package; you can use --install to force that. Also refactor to use variable bestVersion instead of bestName, as only version was used from it.
-
- Sep 15, 2015
-
-
Anthony Cowley authored
The Perl WWW::Curl bindings are required to build Nix.
-
- Sep 04, 2015
-
-
Eelco Dolstra authored
-
- Sep 03, 2015
-
-
Eelco Dolstra authored
- Sep 02, 2015
-
-
Eelco Dolstra authored
Fixes https://github.com/NixOS/nixpkgs/issues/9504. Note that this means we may have a non-functional /bin/sh in the chroot while rebuilding Bash or one of its dependencies. Ideally those packages don't rely on /bin/sh though.
-
Eelco Dolstra authored
-
- Sep 01, 2015
-
-
Eelco Dolstra authored
Fixes https://github.com/NixOS/nixos-homepage/issues/46.
-