about summary refs log tree commit diff
path: root/pkgs/build-support
Commit message (Collapse)AuthorAge
...
* | | | | | separateDebugInfo: compress it by defaultVladimír Čunát2015-09-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using zlib should be cheap enough and save lots of HDD space. Case study (glib): 11 MB -> 4 MB.
* | | | | | separateDebugInfo: Assert LinuxEelco Dolstra2015-09-22
| |_|_|_|/ |/| | | | | | | | | | | | | | Also remove some unintended setting of separateDebugInfo.
* | | | | nix-prefetch-git: pull all tags from remote when checkouting by revisionNikolay Amiantov2015-09-20
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Close #9790. This fixes checkouting for a nasty combination: 1. To be checkouted is a revision which corresponds to tag in a form "<tag>^{}". 2. This revision is not fetched by default.
* | | | Merge new texlive infrastructure, /CC #287Vladimír Čunát2015-09-18
|\ \ \ \ | |_|_|/ |/| | |
| * | | buildEnv: add new parameters: extraPrefix and buildInputsVladimír Čunát2015-09-17
| | | |
* | | | Enable separate debug infoEelco Dolstra2015-09-17
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | You can now pass separateDebugInfo = true; to mkDerivation. This causes debug info to be separated from ELF binaries and stored in the "debug" output. The advantage is that it enables installing lean binaries, while still having the ability to make sense of core dumps, etc.
* | / Merge commit 'a6f6c0e' into master.upstreamWilliam A. Kennington III2015-09-15
|\| | | |/ |/| | | | | This is a partial merge of staging where we have up to date binaries for all packages.
| * mass rewrite of find parameters to cross-platform styleVladimír Čunát2015-09-06
| | | | | | | | | | | | | | | | | | | | Fixes #9044, close #9667. Thanks to @taku0 for suggesting this solution. Now we have no modes starting with `/` or `+`. Rewrite the `-perm` parameters of find: - completely safe: rewrite `/0100` and `+100` to `-0100`, - slightly semantics-changing: rewrite `+111` to `-0100`. I cross-verified the `find` manual pages for Linux, Darwin, FreeBSD.
| * Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-09-03
| |\
| * \ Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-08-28
| |\ \
| * | | darwin: use system dyldJude Taylor2015-08-25
| | | | | | | | | | | | | | | | see https://github.com/NixOS/nixpkgs/issues/9432
* | | | all-packages: Use callPackage where possibleMathnerd3142015-09-14
| | | |
* | | | mirrors: add httpredir.debian.org as the first debian mirror宋文武2015-09-08
| |_|/ |/| |
* | | cassandra: use mirrorsTobias Geerinckx-Rice2015-09-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream likes to move "old" releases to an archive mirror as soon as a new one is released. This is now handled for free by mirrors.nix. (No idea why cs.utah.edu was used to begin with; it's now added to mirrors.nix. Note that it doesn't support SSL, but that applies to several others so I don't see the harm.)
* | | nixos: kill services.virtualboxGuest to fix #9600Vladimír Čunát2015-09-02
| | |
* | | makeWrapper: accept `--argv0` flag (/cc #9562)Thomas Tuegel2015-09-01
| |/ |/| | | | | | | | | | | | | By default `makeWrapper` will not set argv[0] (this is a reversion to the old default behavior). Based on the breakage we have seen from changing the default, this is what most people want. The `wrapProgram` function will send `--argv0 '"$0"'` to `makeWrapper`, i.e. it will continue to pass-through the argv[0] that the wrapper is called with.
* | buildFHSUserEnv: add .env supportNikolay Amiantov2015-08-26
|/
* Merge branch 'staging'Domen Kožar2015-08-25
|\
| * makeWrapper: child process inherits argv[0]Thomas Tuegel2015-08-23
| |
| * Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-08-13
| |\
| * | make isClang work the way a user might expectJude Taylor2015-08-12
| | |
| * | Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-08-07
| |\ \
| * \ \ Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-08-04
| |\ \ \
| * \ \ \ Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-07-30
| |\ \ \ \
| * | | | | mass-replace deprecated usage of find -perm (Fixes #9044)Vladimír Čunát2015-07-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sed 's|-perm +0|-perm /0|g' It's a mass-rebuild due to usage in stdenv's default setup hooks.
| * | | | | Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-07-29
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'master' into stagingVladimír Čunát2015-07-26
| |\ \ \ \ \ \
| * | | | | | | move-docs.sh: Handle share/gtk-docEelco Dolstra2015-07-26
| | | | | | | |
* | | | | | | | buildEnv: Fix handling of empty list of packagesEelco Dolstra2015-08-25
| | | | | | | |
* | | | | | | | buildEnv: Support package priorities like nix-envEelco Dolstra2015-08-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This gets rid of a bunch of collision warnings.
* | | | | | | | build-fhs-userenv: move /tmp handling to bash partNikolay Amiantov2015-08-24
| | | | | | | |
* | | | | | | | build-fhs-{chroot,user}env: expose sockets in /tmpNikolay Amiantov2015-08-24
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | wrapGAppsHook: fix a typoVladimír Čunát2015-08-12
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | It would only matter in (some) multiple-output derivations. /cc @lethalman.
* | | | | | Merge pull request #9060 from oxij/emacs-cleanupArseniy Seroka2015-08-06
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | Cleanup in emacs-packages
| * | | | | emacs-packages: add automatic meta.homepages to builders, cleanup other ↵Jan Malakhovski2015-07-31
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | expressions Because we can.
* / | | | grsecurity: Push testing from 4.0 -> 4.1William A. Kennington III2015-08-04
|/ / / /
* | | | releaseTools.coverageAnalysis: Emit hydra-metricsEelco Dolstra2015-07-30
| | | |
* | | | wrapGAppsHook: populate GIO_EXTRA_MODULESLuca Bruno2015-07-30
| |_|/ |/| |
* | | Merge branch 'gwrap'Luca Bruno2015-07-29
|\ \ \ | |_|/ |/| |
| * | wrapGAppsHook: build hook for wrapping GTK/GNOME appsLuca Bruno2015-07-29
| |/
* / buildRustPackage: Fix rust builds due to #7524Ricardo M. Correia2015-07-24
|/ | | | Fixes #8966
* build-maven: Add handling for snapshot version resolutionShea Levy2015-07-20
|
* gcc_multi: disable the hook moving lib64 to libVladimír Čunát2015-07-20
| | | | | This was preventing wine from build, and we typically don't want it anyway in multilib builds. /cc #8706.
* Merge branch 'staging', discussion #8844Vladimír Čunát2015-07-19
|\
| * Merge master into stagingVladimír Čunát2015-07-17
| |\ | | | | | | | | | There are larger-rebuild changes: gnutls and samba.
| * \ Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-07-15
| |\ \
| * | | Set ‘allowSubstitutes = false’ on various derivationsEelco Dolstra2015-07-09
| | | | | | | | | | | | | | | | | | | | This reduces the number of binary cache requests. See https://github.com/NixOS/nix/commit/b64988bb3585478676585a0f0aecbcf4e11d4432.
| * | | Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-07-08
| |\ \ \
| * \ \ \ Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-07-01
| |\ \ \ \
| * \ \ \ \ Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III2015-06-30
| |\ \ \ \ \