summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* Merge pull request #43730 from srhb/dontcheck-spatial-rotationPeter Simons2018-07-19
|\ | | | | haskellPackages.spatial-rotations: dontCheck for cyclic dependency
| * haskellPackages.spatial-rotations: dontCheck for cyclic dependencySarah Brofeldt2018-07-19
| |
* | signal-desktop: 1.14.1 -> 1.14.2Michael Weiss2018-07-19
| |
* | Merge pull request #43775 from r-ryantm/auto-update/foo2zjsMichael Raskin2018-07-19
|\ \ | | | | | | foo2zjs: 20171202 -> 20180519
| * | foo2zjs: 20171202 -> 20180519R. RyanTM2018-07-18
| | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/foo2zjs/versions.
* | | Merge pull request #43788 from r-ryantm/auto-update/apache-httpdPeter Simons2018-07-19
|\ \ \ | | | | | | | | apacheHttpd: 2.4.33 -> 2.4.34
| * | | apacheHttpd: 2.4.33 -> 2.4.34R. RyanTM2018-07-18
| |/ / | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/apache-httpd/versions.
* | | bazel: Set a sensible strict action environment.Mathieu Boespflug2018-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bazel either reuses the `PATH` from the client, or sets a hardcoded one. The former mode in problematic for build hermeticity. But the latter is crippled on NixOS, because the hardcoded value is `/bin:/usr/bin`. So we set the hardcoded value to match what `customBash` provides. This has the effect of aligning the environments for `ctx.actions.run` and `ctx.actions.run_shell`, which were previously distinct (bug).
* | | bazel: make more tools available in customBash.Mathieu Boespflug2018-07-19
| | |
* | | mpv: use wrapper for scripts and add mpris scriptJohannes Frankenau2018-07-19
| | |
* | | Merge pull request #43729 from srhb/nix-index-0.1.1Sarah Brofeldt2018-07-19
|\ \ \ | | | | | | | | nix-index: 0.1.0 -> 0.1.1
| * | | nix-index: 0.1.0 -> 0.1.1Sarah Brofeldt2018-07-18
| | | |
* | | | Merge pull request #43606 from MarcFontaine/xloglewo2018-07-19
|\ \ \ \ | | | | | | | | | | xlog: init at 2.0.15
| * | | | xlog: init at 2.0.15MarcFontaine2018-07-17
| | | | |
* | | | | Merge pull request #43693 from Ma27/remove-flask_cacheRobert Schütz2018-07-19
|\ \ \ \ \ | | | | | | | | | | | | Remove `pythonPackages.flask_cache`
| * | | | | pythonPackages.graphite_api: move expressionMaximilian Bosch2018-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to the current convention python packages should live in `pkgs/development/python-modules`. As I altered the `graphite_api` expression previously in d3d1b888737 I decided to move it as well. Additionally I applied some minor refactorings: * use `fetchFromGitHub` instead of `fetchgit`. * use `checkInputs` for test dependencies * got rid of fixed points * applied patch which supports flask-caching to 1.3.1 using `git apply -3`
| * | | | | pythonPackages.flask_cache: removeMaximilian Bosch2018-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The package is currently broken and most folks recommend to use `flask-caching` (see https://github.com/thadeusb/flask-cache/issues/171). The only package in `nixpkgs` which remained to use `flask_cache` (`graphite_api`) still builds with `pythonPackages.flask-caching`. The removal and corresponding `graphite_api` change unbreaks several Hydra builds (see https://hydra.nixos.org/build/76953777).
* | | | | | Merge pull request #43538 from timokau/fetchpatch-fixMatthew Bauer2018-07-19
|\ \ \ \ \ \ | | | | | | | | | | | | | | fetchpatch: quote excludes
| * | | | | | fetchpatch: add option to revert a patchTimo Kaufmann2018-07-16
| | | | | | |
| * | | | | | fetchpatch: fail on empty patchTimo Kaufmann2018-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since this is probably never the desired case and has led to actual issues, see the comments at: https://github.com/NixOS/nixpkgs/commit/af1313e91552e42a4419b396b3026319c60fc17f This might also happen when pulling a patch from GitHub or a similar web interface without explicitly selecting the "raw" format.
| * | | | | | fetchpatch: escape excludes and includesTimo Kaufmann2018-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Excludes and includes are implemented by passing the parameters to the respective flags of `filterdiff`. Those were passed unescaped until now. Since those flags expect patterns (similar to shell globs), something like `/some/path/*` might be used to exclude or include all files in some path. Without escaping the shell would expand the `*`, leading to unexpected behaviour.
| * | | | | | fetchpatch: Add includes to compliment excludes, and require that both not ↵John Ericson2018-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | be non-empty. This commit was originally introduced as part of #41420 and then reverted with the rest of that PR. However there was no reason to revert his particular commit.
* | | | | | | Merge pull request #43558 from herberteuler/nethack-qtMatthew Bauer2018-07-19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | nethack: add qt support on linux
| * | | | | | | nethack: add qt plugin wrapperFranz Pletz2018-07-15
| | | | | | | |
| * | | | | | | nethack: add qt support on linuxGuanpeng Xu2018-07-15
| | | | | | | |
* | | | | | | | Merge pull request #43692 from matthewbauer/disallow-aliases-in-releaseMatthew Bauer2018-07-19
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Avoid using aliases, disallow aliases in release
| * | | | | | | | treewide: preserve hashes from 76999cc40e6Matthew Bauer2018-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 76999cc40e6 changed some hashes resulting in this PR being technically a mass rebuild. To avoid this, I am restoring some of the hashes (even though it seems silly). My main goal is to get this PR merged quickly as treewide changes like this get out-of-date quickly. This commit should be reverted on the next mass rebuild.
| * | | | | | | | lollypop-portal: use callPackageMatthew Bauer2018-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | otherwise we get this error on evaluation: derivation 'lollypop-portal' has invalid meta attribute 'override' derivation 'lollypop-portal' has invalid meta attribute 'overrideDerivation'
| * | | | | | | | release: disallow aliasesMatthew Bauer2018-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will make hydra & ofborg ignore aliases when evluating
| * | | | | | | | treewide: remove aliases in nixpkgsMatthew Bauer2018-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
* | | | | | | | | Merge pull request #43759 from dtzWill/fix/gpm-muslWill Dietz2018-07-18
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | gpm: patch to fix w/musl, good for general use
| * | | | | | | | gpm: patch to fix w/musl, good for general useWill Dietz2018-07-18
|/ / / / / / / /
* | | | | | | | lf: 6 -> 7Michael Weiss2018-07-19
| | | | | | | |
* | | | | | | | diffoscope: Add gnumeric dependencyTuomas Tynkkynen2018-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For the `ssconvert` tool.
* | | | | | | | diffoscope: Document the script to locate missing optional dependenciesTuomas Tynkkynen2018-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | And give it it a bit more descriptive name of list-missing-tools.sh.
* | | | | | | | diffoscope: fix manpage generationWill Dietz2018-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Was already broken, not sure for how long. Without this the tool fails to run, so help2man ends up producing an empty file.
* | | | | | | | diffoscope: add lz4 toolWill Dietz2018-07-19
| | | | | | | |
* | | | | | | | diffoscope: 98 -> 99Will Dietz2018-07-19
| | | | | | | |
* | | | | | | | Merge pull request #43669 from matthewbauer/readd-forceSystemMatthew Bauer2018-07-18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | aliases: (re)add forceSystem
| * | | | | | | | aliases: add forceSystemMatthew Bauer2018-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some uses of this still exist outside of Nixpkgs
* | | | | | | | | xfce4-13.parole: 0.9.2 -> 1.0.1 (#43765)volth2018-07-19
| | | | | | | | |
* | | | | | | | | xfce4-13.xfce4-dict: 0.8.0 -> 0.8.1 (#43764)volth2018-07-19
| | | | | | | | |
* | | | | | | | | xfce4-13.xfce4-taskmanager: 1.2.0 -> 1.2.1 (#43763)volth2018-07-18
| | | | | | | | |
* | | | | | | | | xfce4-13.xfwm4: fix build (add libXdamage dependency) (#43762)volth2018-07-18
| | | | | | | | |
* | | | | | | | | xfce4-13.libxfce4util: 4.13.1 -> 4.13.2 (#43761)volth2018-07-18
| | | | | | | | |
* | | | | | | | | xfce4-notifyd: 0.4.1 -> 0.4.2 (#43707)volth2018-07-18
| | | | | | | | |
* | | | | | | | | xfconf: 4.13.4 -> 4.13.5 (#43703)volth2018-07-18
| | | | | | | | |
* | | | | | | | | xfce4-13.xfce4-volumed-pulse: 0.2.2 -> 0.2.3 (#43704)volth2018-07-18
| | | | | | | | |
* | | | | | | | | libxklavier: 5.3 -> 5.4 (#43622)volth2018-07-18
| | | | | | | | |
* | | | | | | | | Merge pull request #43766 from Ma27/fix-python-llvmliteFrederik Rietdijk2018-07-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | pythonPackages.llvmlite: fix build