about summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* stumpwm-git: Fixed wrong sha256.Francis St-Amour2016-06-22
|
* stumpwm: Added newer version of stumpwm from its git repository (alongside ↵Francis St-Amour2016-06-22
| | | | the latest release).
* treewide: remove double quotes from wrappersMarius Bakke2016-06-22
| | | | Close #14753; see that for context.
* Merge branch 'staging'Vladimír Čunát2016-06-22
|\
| * openspades, arangodb: more #include error fixupsVladimír Čunát2016-06-22
| | | | | | | | ... after gcc-5.4.
| * Merge #16291: krb5: fix compilation on weird prefixesVladimír Čunát2016-06-20
| |\ | | | | | | | | | (when nix store prefix contains a "+" character)
| | * krb5: fix for stores with paths containing '+' characterDmitry Kalinkin2016-06-17
| | |
| * | libxkbcommon: set X11 locale directory (close #16340)Marius Bakke2016-06-20
| | |
| * | make-wrapper: fixup #14753 changes to make tests workVladimír Čunát2016-06-19
| | | | | | | | | | | | | | | | | | | | | The tests need to expand passed variable and very carefully. I could see no other easy way than to change single-quoting in makeWrapper to double-quoting. The tests now fail with the same problem as on master...
| * | Merge branch 'master' into stagingVladimír Čunát2016-06-19
| |\ \ | | | | | | | | | | | | Hydra nixpkgs: ?compare=1279790
| * | | virtualbox: fix build with gcc-5.4 by Debian patchVladimír Čunát2016-06-19
| | | |
| * | | treewide: fix #include errors after gcc-5.4Vladimír Čunát2016-06-19
| | | | | | | | | | | | | | | | They were mostly missing <cmath> or <math.h>.
| * | | rr: improve the parent commitVladimír Čunát2016-06-13
| | | |
| * | | rr: fix build after gcc-5.4 bumpVladimír Čunát2016-06-13
| | | | | | | | | | | | | | | | Discussion: https://github.com/NixOS/nixpkgs/commit/772c92ba5c60a
| * | | gcc: fixup the tarball job after merging #15867Vladimír Čunát2016-06-11
| | | | | | | | | | | | | | | | | | | | | | | | The evaluation problem happened in while checking find-tarballs.nix http://hydra.nixos.org/build/36754203/nixlog/1/raw (it didn't seem worth digging into why exactly)
| * | | cross GCC: Fix some paths to libc headers (after multiple outputs)Tuomas Tynkkynen2016-06-11
| | | | | | | | | | | | | | | | | | | | It's not completely clear to me why the path to libc headers is set differently when cross building...
| * | | libelf: Fix cross compilationTuomas Tynkkynen2016-06-11
| | | |
| * | | gcc: Pass --with-mpc in crossAttrsTuomas Tynkkynen2016-06-10
| | | | | | | | | | | | | | | | | | | | Just for consistency, it should be already coming from buildInputs anyway.
| * | | make-bootstrap-tools-cross.nix: Strip extra whitespaceTuomas Tynkkynen2016-06-10
| | | |
| * | | pkgs.runCommand: passAsFile (buildCommand can be very long)Domen Kožar2016-06-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Close #15803. This avoids the error: while setting up the build environment: executing ‘/nix/store/7sb42axk5lrxqz45nldrb2pchlys14s1-bash-4.3-p42/bin/bash’: Argument list too long Note: I wanted to make it optional based on buildCommand length, but that seems pointless as I'm sure it's less performant. Amended by vcunat: https://github.com/NixOS/nixpkgs/pull/15803#issuecomment-224841225
| * | | Merge #15867: glibc, gcc: fixes for ARM targetsVladimír Čunát2016-06-10
| |\ \ \ | | | | | | | | | | | | | | | ... needed after closure-size merge (#7701)
| | * | | darwin output pathsEric Litak2016-05-31
| | | | |
| | * | | same changes to the rest. 4.5 has inf recursion still, 4.6 too old for glibc2.23Eric Litak2016-05-31
| | | | |
| | * | | fix brace warnings in glibcEric Litak2016-05-31
| | | | |
| | * | | same changes to gcc6Eric Litak2016-05-31
| | | | |
| | * | | fixing libcCross related flagsEric Litak2016-05-31
| | | | | | | | | | | | | | | | | | | | (excluding darwin and mingw for now)
| | * | | manual strip broke crossDrv. no clue why it was ever added; should be automaticEric Litak2016-05-31
| | | | |
| | * | | reorganize crossDrv hooksEric Litak2016-05-31
| | | | |
| | * | | moving builder.sh hooks into nixEric Litak2016-05-31
| | | | |
| | * | | infinite recursion and cross-build fixEric Litak2016-05-31
| | | | |
| * | | | gcc: maintenance 5.3 -> 5.4Vladimír Čunát2016-06-09
| | | | |
| * | | | Merge #14356: docbook updatesVladimír Čunát2016-06-09
| |\ \ \ \
| | * | | | xmlto: 0.0.26 -> 0.0.28José Romildo Malaquias2016-04-01
| | | | | |
| | * | | | docbook-xsl: 1.78.1 -> 1.79.1José Romildo Malaquias2016-04-01
| | | | | |
| * | | | | Merge #14753: makeWrapper: allow spaces in variablesVladimír Čunát2016-06-09
| |\ \ \ \ \
| | * | | | | makeWrapper: allow special characters in variable contentsMarius Bakke2016-04-16
| | | | | | |
| | * | | | | wrapPythonPrograms: preserve quoted strings from makeWrapperArgsMarius Bakke2016-04-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, if a user tries to to set a variable that contains spaces, it will be broken up before being passed to wrapProgram. This commit resolves that by converting makeWrapperArgs to an array that preserves any quoted elements using bash's parser.
| * | | | | | Merge recent master into stagingVladimír Čunát2016-06-09
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This would be a fast-forward, but --no-ff seems cleaner in this case. Hydra nixpkgs: ?compare=1278067
* | | | | | | | Replace `./../*` with `../*` in Nix expressions (#16414)John Ericson2016-06-22
| | | | | | | |
* | | | | | | | libav: fixup build after e9cce6dVladimír Čunát2016-06-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #16411. The patch wasn't applied anymore.
* | | | | | | | gobject-introspection: remove unused separate-rpath-arg.patchTobias Geerinckx-Rice2016-06-22
| | | | | | | |
* | | | | | | | epiphany: remove unused libxml_depend.patchTobias Geerinckx-Rice2016-06-22
| | | | | | | |
* | | | | | | | nvidia_x11_legacy*: remove unused nvidia-340.76-kernel-4.0.patchTobias Geerinckx-Rice2016-06-22
| | | | | | | |
* | | | | | | | zeromq: remove unused sodium_warning.patchTobias Geerinckx-Rice2016-06-22
| | | | | | | |
* | | | | | | | biber: 1.9 -> 2.4Nikolay Amiantov2016-06-22
| | | | | | | |
* | | | | | | | perlPackages.TextRoman: init at 3.3Nikolay Amiantov2016-06-22
| | | | | | | |
* | | | | | | | uwsgi: add rack supportNikolay Amiantov2016-06-22
| | | | | | | |
* | | | | | | | riak: remove unused 1.x patchesTobias Geerinckx-Rice2016-06-22
| | | | | | | |
* | | | | | | | pythonPackages.scipy: remove unused scipy-0.16.1-decorator-fix.patchTobias Geerinckx-Rice2016-06-22
| | | | | | | |
* | | | | | | | geary 0.10: remove unused disable_valadoc.patchTobias Geerinckx-Rice2016-06-22
| | | | | | | |