summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* teensy-loader-cli: build on macosMatthew Bauer2018-10-30
|
* qmk_firmware: init at 0.6.144Matthew Bauer2018-10-30
| | | | A convenient way to test embedded projects
* mentorToolchains: removeMatthew Bauer2018-10-30
| | | | | | | | | | | | | | mentorToolchains.armLinuxGnuEabi is replaced with: - pkgsCross.pogoplug4.buildPackages.gcc - pkgsCross.pogoplug4.buildPackages.binutils and mentorToolchains.armEabi is replaced with: - pkgsCross.arm-embedded.buildPackages.gcc - pkgsCross.arm-embedded.buildPackages.binutils Fixes #39087
* gcc-arm-embedded: removeMatthew Bauer2018-10-30
| | | | | | | replace with: - pkgsCross.arm-embedded.buildPackages.gcc - pkgsCross.arm-embedded.buildPackages.binutils
* treewide: use gnu toolchain for avr/arm-embeddedMatthew Bauer2018-10-30
| | | | | | | | | | | | | | | | | | These packages should in theory work with our GCC toolchains, but there are some definite breakages that need to be tracked down. Comparing output of these to old gcc-arm-embedded is important. Affected packages include: - axolooti - avrdudess - opentx - microscheme - betaflight - inav - blackmagic - simavr - gnuk
* gnuk{-git,-unstable}: removeMatthew Bauer2018-10-29
| | | | | These two are unmaintained, no reason to keep them when they are out-of-date
* release-cross: add new targetsMatthew Bauer2018-10-29
| | | | | | | | | adds: - arm-embedded - avr - aarch64-embedded - powerpc-embedded
* systems/parse.nix: support weird system configsMatthew Bauer2018-10-29
| | | | | | | | There are some weird ones out there that don’t follow any pattern: - arm-none-eabi - powerpc-none-eabi - aarch64-none-elf
* newlib: init at 3.0.0Matthew Bauer2018-10-29
| | | | | | | Fixes #47533 newlib seems to think it’s a compiler when it’s not. Anyway had to make host refer to build platform for things to work.
* dfu-programmer: supports macosMatthew Bauer2018-10-29
|
* gcc: support avrMatthew Bauer2018-10-29
| | | | | | | | | | | | | | | | | | - respect libc’s incdir and libdir - make non-unix systems single threaded - set LIMITS_H_TEST to false for avr - misc updates to support new libc’s - use multilib with avr For threads we want to use: - posix on unix systems - win32 on windows - single on everything else For avr: - add library directories for avrlibc - to disable relro and bind - avr5 should have precedence over avr3 - otherwise gcc uses the wrong one
* systems: add avrlibc for avr systemsMatthew Bauer2018-10-29
|
* avr: use new compilation infrastructureMatthew Bauer2018-10-29
| | | | | | | | | | Gets rid of: avrbinutils avrgcc to replace with: pkgsCross.avr.buildPackages.binutils pkgsCross.avr.buildPackages.gcc
* ibus: fix cross compilationMatthew Bauer2018-10-29
| | | | gtk-doc is a native input so we need to use buildPackages here.
* Merge pull request #49070 from r-ryantm/auto-update/python3.6-dlibFrederik Rietdijk2018-10-29
|\ | | | | python36Packages.dlib: 19.13 -> 19.16
| * pythonPackages.dlib: move expressionMaximilian Bosch2018-10-29
| | | | | | | | | | | | Initially the expression was quite small (just inherited properties from `pkgs.dlib`), but the more it grows the better it is to store it into its own file.
| * pythonPackages.dlib: disable AVX instructions during checkPhaseMaximilian Bosch2018-10-29
| |
| * python36Packages.dlib: 19.13 -> 19.16R. RyanTM2018-10-24
| | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-dlib/versions
* | Merge pull request #49401 from aherrmann/stringify-modules-pathEelco Dolstra2018-10-29
|\ \ | | | | | | nixos/lib/eval-config.nix: toString modulesPath
| * | nixos/lib/eval-config.nix: toString modulesPathAndreas Herrmann2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Referencing modulesPath in NixOS configurations can cause evaluation errors in restricted mode. If used as `${modulesPath}` (as in all use-sites in nixpkgs) the modules subtree is copied into its own store path. Access to this path will be forbidden in restricted mode. Converting to a string solves this issue. `${builtins.toString modulesPath}` will point to a subdirectory of the nixpkgs tree out of which evalModules is called. This change converts modulesPath to a string by default so that the call-site doesn't have to anymore.
* | | imagemagick7: 7.0.8-12 -> 7.0.8-14 (#49298)R. RyanTM2018-10-29
| | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/imagemagick/versions
* | | python36Packages.pip-tools: 2.0.2 -> 3.1.0 (#48986)R. RyanTM2018-10-29
| | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-pip-tools/versions
* | | Merge pull request #49391 from dtzWill/update/fd-7.2.0Vladyslav M2018-10-29
|\ \ \ | | | | | | | | fd: 7.1.0 -> 7.2.0
| * | | fd: 7.1.0 -> 7.2.0Will Dietz2018-10-29
| | | |
* | | | Merge pull request #48892 from sveitser/update/pythonPackages.shRobert Schütz2018-10-29
|\ \ \ \ | | | | | | | | | | pythonPackages.sh: 1.11 -> 1.12.14
| * | | | python.pkgs.python-packer: remove dependency pinningRobert Schütz2018-10-29
| | | | |
| * | | | pythonPackages.sh: move to python-modulessveitser2018-10-24
| | | | |
| * | | | pythonPackages.sh: 1.11 -> 1.12.14sveitser2018-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | - Enable unit tests. - Add MIT license.
* | | | | python36Packages.mail-parser: 3.3.1 -> 3.4.1 (#48974)R. RyanTM2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-mail-parser/versions
* | | | | python36Packages.pycares: 1.0.0 -> 2.3.0 (#48983)R. RyanTM2018-10-29
| |/ / / |/| | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-pycares/versions
* | | | python3.pkgs.netdisco: 2.0.0 -> 2.2.0Robert Schütz2018-10-29
| | | |
* | | | home-assistant: 0.81.0 -> 0.81.1Robert Schütz2018-10-29
| | | |
* | | | nixos/tests/home-assistant: no longer ignore "Timer got out of sync" errorRobert Schütz2018-10-29
| | | | | | | | | | | | | | | | That error message was removed in https://github.com/home-assistant/home-assistant/pull/17398.
* | | | pythonPackages.aioprocessing: init at 1.0.1 (#49170)Urban Škudnik2018-10-29
| | | |
* | | | Merge pull request #49320 from benpye/init-minifluxVladyslav M2018-10-29
|\ \ \ \ | | | | | | | | | | miniflux: init at 2.0.12
| * | | | miniflux: init at 2.0.12Ben Pye2018-10-29
| | | | |
| * | | | maintainers: add benpyeBen Pye2018-10-28
| | | | |
* | | | | python27Packages.gevent-websocket: 0.9.3 -> 0.10.1 (#49010)R. RyanTM2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python2.7-gevent-websocket/versions
* | | | | python36Packages.foolscap: 0.12.6 -> 0.13.1 (#49012)R. RyanTM2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-foolscap/versions
* | | | | python27Packages.gipc: 0.5.0 -> 0.6.0 (#49005)R. RyanTM2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python2.7-gipc/versions
* | | | | Merge pull request #49079 from alyssais/bbDaiderd Jordan2018-10-29
|\ \ \ \ \ | | | | | | | | | | | | bb: add Darwin compatibility
| * | | | | bb: add Darwin compatibilityAlyssa Ross2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | It even has working sound, unlike on Linux!
| * | | | | libmikmod: remove duplicate libpulseaudio depAlyssa Ross2018-10-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is already included as a propagatedBuildInput, so no need to have it also be a buildInput.
* | | | | | python36Packages.flask_migrate: 2.2.1 -> 2.3.0 (#49020)R. RyanTM2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-flask-migrate/versions
* | | | | | ahoviewer: 1.5.0 -> 1.6.4 (#49307)xzfc2018-10-29
| | | | | |
* | | | | | Merge pull request #49383 from tazjin/docs/lib-docstringsGraham Christensen2018-10-29
|\ \ \ \ \ \ | | | | | | | | | | | | | | Update library function "docstrings" for nixdoc generation
| * | | | | | lib/options: Update documentation comments for docs generationVincent Ambo2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Documents functions in `lib.options` for docs generation with nixdoc. The formatting change in the `mkOption` arguments is due to the way `nixdoc` parses documentation comments on pattern arguments. It's not ideal, but it works.
| * | | | | | lib/debug: Update documentation comments for docs generationVincent Ambo2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Documents functions in `lib.debug` for docs generation with nixdoc. Note that type signatures and clearer descriptions are still missing on some of these functions, but this is good enough for a first run.
| * | | | | | lib/lists: Update documentation comments for doc generationVincent Ambo2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updates documentation comments with extra information for nixdoc[1] compatibility. [1]: https://github.com/tazjin/nixdoc
| * | | | | | lib/strings: Update documentation comments for doc generationVincent Ambo2018-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updates documentation comments with extra information for nixdoc[1] compatibility. Some documentation strings have additionally been reworded for clarity. "Faux types" are added where applicable, but some functions do things that are not trivially representable in the type notation used so they were ignored for this purpose. [1]: https://github.com/tazjin/nixdoc