about summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* firefoxPackages.icecat: mark as insecureFlorian Klink2020-01-10
| | | | It's based on 60.3.0, whose support ended around October 2019.
* Merge pull request #77458 from emilazy/tor-browser-bundle-bin-9.0.4Graham Christensen2020-01-10
|\ | | | | tor-browser-bundle-bin: 9.0.3 -> 9.0.4
| * tor-browser-bundle-bin: 9.0.3 -> 9.0.4Emily2020-01-10
| |
* | firefox-beta-bin: 72.0b3 -> 73.0b3adisbladis2020-01-10
| |
* | firefox-devedition-bin: 72.0b11 -> 73.0b3adisbladis2020-01-10
| |
* | Merge pull request #77452 from flokli/tor-remove-insecureFlorian Klink2020-01-10
|\ \ | | | | | | firefoxPackages.tor-browser*, tor-browser-bundle: remove
| * | firefoxPackages.tor-browser*, tor-browser-bundle: removeFlorian Klink2020-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These are all based on firefox versions with known vulnerabilities exploited in the wild. We seriously shouldn't ship this in nixpkgs, especially not for sensitive applications as the Tor Browser. `tor-browser-bundle` is just a wrapper around `firefoxPackages.tor-browser`, so let's remove it too. `tor-browser-bundle-bin` is the much safer bet, which is individually downloaded from `dist.torproject.org` and just `patchelf`-ed locally to work on NixOS. Co-Authored-By: Alyssa Ross <hi@alyssa.is> Co-Authored-By: Andreas Rammhold <andreas@rammhold.de> Co-Authored-By: Graham Christensen <graham@grahamc.com>
* | | pythonPackages.junit-xml: init at 1.8Victor multun Collod2020-01-10
| | |
* | | python27Packages.catalogue: 0.0.8 -> 0.2.0R. RyanTM2020-01-10
| | |
* | | matterbridge: 1.11.0 -> 1.16.3 (#77454)zimbatm2020-01-10
| | |
* | | stups-fullstop: init at 1.1.31Maxim Schuwalow2020-01-10
| | |
* | | vimPlugins.defx-git: init at 2019-12-25ivann2020-01-10
|/ /
* | gns3-{gui,server}: 2.2.3 -> 2.2.5Michael Weiss2020-01-10
| |
* | androidStudioPackages.{dev,canary}: 4.0.0.7 -> 4.0.0.8Michael Weiss2020-01-10
| | | | | | | | | | | | | | Unfortunately this update seems to require some manual changes, at least in my case. But fortunately the IDE explains the required changes: 4:45 PM Gradle sync failed: Minimum supported Gradle version is 6.1-rc-1. Current version is 6.1-milestone-2. If using the gradle wrapper, try editing the distributionUrl in /home/michael/workspace/as40test/gradle/wrapper/gradle-wrapper.properties to gradle-6.1-rc-1-all.zip Consult IDE log for more details (Help | Show Log) (21 s 544 ms)
* | Merge pull request #76592 from snglth/masterDmitry Kalinkin2020-01-10
|\ \ | | | | | | flacon: improvements
| * | flacon: change maintainer to snglthIllia Shestakov2019-12-30
| | |
| * | flacon: improvementsIllia Shestakov2019-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Use libsForQt5.callPackage instead of raw callPackage` (this adds ability to import qtbase and qttools directly instead of importing whole qt5) 2. Include wrapQtAppsHook in nativeBuildInputs The major point of this changes is to provide support for running support flacon under wayland session, but it may help in some other use cases Closes #76588
* | | nvme-cli: 1.9 -> 1.10.1Michael Weiss2020-01-10
| | |
* | | firefox-esr-60: mark as vulnerableVladimír Čunát2020-01-10
| | | | | | | | | | | | | | | | | | | | | The last release was in September, so it's surely "vulnerable" now. https://www.mozilla.org/en-US/firefox/60.9.0/releasenotes/ This is the same appproach we've taken for esr-52.
* | | Merge pull request #77303 from tfc/port-elk-initdb-kafkaFlorian Klink2020-01-10
|\ \ \ | | | | | | | | Port elk initdb kafka
| * | | nixosTests.initdb: Move code to existing postgres testJacek Galowicz2020-01-09
| | | |
| * | | nixosTests.postgres: Refactor codeJacek Galowicz2020-01-09
| | | |
| * | | nixosTests.kafka: port to pythonJacek Galowicz2020-01-08
| | | |
| * | | nixosTests.elk: port to pythonJacek Galowicz2020-01-08
| | | |
| * | | nixosTests.initdb: port to pythonJacek Galowicz2020-01-07
| | | |
* | | | poetry: 1.0.1 -> 1.0.2adisbladis2020-01-10
| | | |
* | | | lib/types: Introduce lazyAttrsOf (#70138)Silvan Mosberger2020-01-10
|\ \ \ \ | | | | | | | | | | lib/types: Introduce lazyAttrsOf
| * | | | lib/modules: Switch _module.args from attrsOf to lazyAttrsOfSilvan Mosberger2020-01-10
| | | | |
| * | | | lib/tests: Add tests for attrsOf and lazyAttrsOfSilvan Mosberger2020-01-10
| | | | |
| * | | | lib/types: Introduce lazyAttrsOfSilvan Mosberger2020-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The standard attrsOf is strict in its *values*, meaning it's impossible to access only one attribute value without evaluating all others as well. lazyAttrsOf is a version that doesn't have that problem, at the expense of conditional definitions not properly working anymore.
| * | | | lib/types: Add emptyValue attribute to typesSilvan Mosberger2020-01-10
| | | | | | | | | | | | | | | | | | | | Co-Authored-By: Robert Hensing <roberth@users.noreply.github.com>
| * | | | nixos/doc: Note that attrsOf is strict in its valuesSilvan Mosberger2020-01-10
| | | | |
| * | | | lib/modules: Move the isDefined check into mergedValueSilvan Mosberger2020-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without this change, accessing `mergedValue` from `mergeDefinitions` in case there are no definitions will throw an error like error: evaluation aborted with the following error message: 'This case should never happen.' This change makes it throw the appropriate error error: The option `foo' is used but not defined. This is fully backwards compatible.
* | | | | Merge pull request #77413 from marsam/update-reviewdogMarek Mahut2020-01-10
|\ \ \ \ \ | | | | | | | | | | | | reviewdog: 0.9.14 -> 0.9.15
| * | | | | reviewdog: 0.9.14 -> 0.9.15Mario Rodas2020-01-08
| | |_|_|/ | |/| | |
* | | | | go_1_12, go_1_13: skip TestExtraFiles on 32-bit arm (#76944)Andrew Childs2020-01-10
| | | | | | | | | | | | | | | | | | | | The test is known to be flaky in some environments, and I'm seeing it consistently in an armv7l-linux vm.
* | | | | nixos/powertop: wait for hardware to initialize (#77364)Jörg Thalheim2020-01-10
|\ \ \ \ \ | |_|/ / / |/| | | | nixos/powertop: wait for hardware to initialize
| * | | | nixos/powertop: wait for hardware to initializeDenys Pavlov2020-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We should wait until after `multi-user.target` is triggered to allow hardware to finish initializing, such as network devices and USB drives. This ensures `powertop --auto-tune` sets more tunables to "Good". Fixes #66820
* | | | | Merge pull request #77445 from Infinisil/fix-lib-testsDaiderd Jordan2020-01-10
|\ \ \ \ \ | | | | | | | | | | | | lib/tests: Fix module tests
| * | | | | lib/tests: Fix module testsSilvan Mosberger2020-01-10
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the broken test in https://github.com/NixOS/nixpkgs/pull/77416 Apparently hydra uses `nix-build lib/tests/release.nix` to run all tests, where IFD isn't allowed. Fortunately we can get around this with builtins.toFile, which doesn't require IFD, but still can test the properties we want.
* | | | | Merge pull request #77149 from alyssais/asciidoctorzimbatm2020-01-10
|\ \ \ \ \ | | | | | | | | | | | | Reduce AsciiDoctor closure size
| * | | | | defaultGemConfig: remove asciidoctor-diagram JARsAlyssa Ross2020-01-09
| | | | | | | | | | | | | | | | | | | | | | | | (Except on JRuby, where these are presumably important.)
| * | | | | defaultGemConfig: reduce mathematical closure sizeAlyssa Ross2020-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ext/ isn't needed once the extensions have been built, contains references to a bunch of huge dependencies, and contains megabytes of tests.
| * | | | | ruby: remove references to CC by defaultAlyssa Ross2020-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes RbConfig["CC"] return an invalid path, but I hope nothing is depending on that anyway...
| * | | | | buildRubyGem: remove more bloat filesAlyssa Ross2020-01-09
| | | | | |
| * | | | | buildRubyGem: strip by defaultAlyssa Ross2020-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I'm not sure why this was disabled, but it looks like a pretty harmless way to bring down closure size and remove references to compilers and stuff.
* | | | | | Merge pull request #77437 from adisbladis/poetry-1_0_1zimbatm2020-01-10
|\ \ \ \ \ \ | | | | | | | | | | | | | | poetry: 1.0.0 -> 1.0.1
| * | | | | | poetry: 1.0.0 -> 1.0.1adisbladis2020-01-10
| | | | | | |
| * | | | | | poetry2nix: 1.1.0 -> 1.2.0adisbladis2020-01-10
| | | | | | |
* | | | | | | kicad: split version.nix & add update.sh (#77003)Jörg Thalheim2020-01-10
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | kicad: split version.nix & add update.sh