about summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* Merge pull request #84074 from Infinisil/fix-literal-option-examplesSilvan Mosberger2020-04-03
|\ | | | | nixos/treewide: Fix incorrectly rendered examples
| * nixos/treewide: Fix incorrectly rendered examplesSilvan Mosberger2020-04-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many options define their example to be a Nix value without using literalExample. This sometimes gets rendered incorrectly in the manual, causing confusion like in https://github.com/NixOS/nixpkgs/issues/25516 This fixes it by using literalExample for such options. The list of option to fix was determined with this expression: let nixos = import ./nixos { configuration = {}; }; lib = import ./lib; valid = d: { # escapeNixIdentifier from https://github.com/NixOS/nixpkgs/pull/82461 set = lib.all (n: lib.strings.escapeNixIdentifier n == n) (lib.attrNames d) && lib.all (v: valid v) (lib.attrValues d); list = lib.all (v: valid v) d; }.${builtins.typeOf d} or true; optionList = lib.optionAttrSetToDocList nixos.options; in map (opt: { file = lib.elemAt opt.declarations 0; loc = lib.options.showOption opt.loc; }) (lib.filter (opt: if opt ? example then ! valid opt.example else false) optionList) which when evaluated will output all options that use a Nix identifier that would need escaping as an attribute name.
* | qwt6: 6.1.2 -> 6.1.4Doron Behar2020-04-03
| |
* | Merge pull request #84178 from gnxlxnxx/masterMaximilian Bosch2020-04-03
|\ \ | | | | | | swaylock-effects: init at v1.6-0
| * | maintainers add gnxlxnxxgnxlxnxx2020-04-03
| | |
| * | swaylock-effects: init at v1.6-0gnxlxnxx2020-04-03
| | |
* | | Merge pull request #84166 from danieldk/softmaker-office-976José Romildo Malaquias2020-04-03
|\ \ \ | | | | | | | | softmaker-office: 974 -> 976
| * | | softmaker-office: 974 -> 976Daniël de Kok2020-04-03
| | | | | | | | | | | | | | | | | | | | | | | | This is a bugfix release: https://www.softmaker.com/en/servicepacks-office-changelog
| * | | softmaker-office: fix desktop itemsDaniël de Kok2020-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix desktop items to pass validation: - Remove icon file extension. - Remove categories that are not defined by the specification. - Remove a duplicate MIME type in the PlanMaker desktop file
* | | | Don't pin 'nixpkgs' in the system registry by defaultEelco Dolstra2020-04-03
| | | | | | | | | | | | | | | | | | | | Nixpkgs takes up a lot of disk space so we shouldn't do this by default.
* | | | Merge pull request #81622 from marsam/update-gotopMario Rodas2020-04-03
|\ \ \ \ | | | | | | | | | | gotop: 3.0.0 -> 3.4.5
| * | | | gotop: 3.0.0 -> 3.5.0Mario Rodas2020-03-03
| | | | | | | | | | | | | | | | | | | | Update src with maintained fork
* | | | | Merge pull request #84165 from feijoas/flat-remix-icon-themeJosé Romildo Malaquias2020-04-03
|\ \ \ \ \ | | | | | | | | | | | | flat-remix-icon-theme: 20191122 -> 20200116
| * | | | | flat-remix-icon-theme: 20191122 -> 20200116Markus Schneider2020-04-03
| | |/ / / | |/| | |
* | | | | Merge pull request #84119 from i077/todoist-electron/1.20Jörg Thalheim2020-04-03
|\ \ \ \ \ | |_|/ / / |/| | | | todoist-electron: 1.19 -> 1.20
| * | | | todoist-electron: 1.19 -> 1.20Imran Hossain2020-04-02
| | | | |
* | | | | Merge pull request #84168 from saschagrunert/conmonMario Rodas2020-04-03
|\ \ \ \ \ | | | | | | | | | | | | conmon: 2.0.14 -> 2.0.15
| * | | | | conmon: 2.0.14 -> 2.0.15Sascha Grunert2020-04-03
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Sascha Grunert <sgrunert@suse.com>
* | | | | | Merge pull request #84159 from marsam/update-skimMario Rodas2020-04-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | skim: 0.8.0 -> 0.8.1
| * | | | | | skim: 0.8.0 -> 0.8.1Mario Rodas2020-04-02
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #84173 from bkchr/bkchr-fix-wg-quickMichele Guerini Rocco2020-04-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix wg-quick after wireguard got upstreamed
| * | | | | | nixos/wg-quick: Fix after wireguard got upstreamedBastian Köcher2020-04-03
| | | | | | |
* | | | | | | chromium: Ignore unknown warning optionsMichael Weiss2020-04-03
| |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This can e.g. save around 150k lines of unnecessary log messages which take up around 66% of the total lines (based on a log of 80.0.3987.100): 29527 warning: unknown warning option '-Wno-bitwise-conditional-parentheses'; did you mean '-Wno-bitwise-op-parentheses'? [-Wunknown-warning-option] 29527 warning: unknown warning option '-Wno-builtin-assume-aligned-alignment' [-Wunknown-warning-option] 29527 warning: unknown warning option '-Wno-deprecated-copy'; did you mean '-Wno-deprecated'? [-Wunknown-warning-option] 29527 warning: unknown warning option '-Wno-final-dtor-non-final-class'; did you mean '-Wno-abstract-final-class'? [-Wunknown-warning-option] 29527 warning: unknown warning option '-Wno-implicit-int-float-conversion'; did you mean '-Wno-implicit-float-conversion'? [-Wunknown-warning-option]
* | | | | | Merge pull request #84170 from zowoq/fzfMaximilian Bosch2020-04-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | fzf: 0.21.0-1 -> 0.21.1
| * | | | | | fzf: 0.21.0-1 -> 0.21.1zowoq2020-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/junegunn/fzf/blob/master/CHANGELOG.md#0211
* | | | | | | Merge pull request #84174 from primeos/chromiumMichael Weiss2020-04-03
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | chromium: 80.0.3987.162 -> 80.0.3987.163
| * | | | | | chromium: 80.0.3987.162 -> 80.0.3987.163Michael Weiss2020-04-03
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://chromereleases.googleblog.com/2020/04/stable-channel-update-for-desktop.html Note: This update contains only two fixes [0]. The fix that reverts a feature which caused a crash spike on 80.0.3987.162 [1] seems important for us (though the commit doesn't provide any data on the crash spike). [0]: https://chromium.googlesource.com/chromium/src/+log/80.0.3987.162..80.0.3987.163?pretty=fuller [1]: https://chromium.googlesource.com/chromium/src/+/fc11c43603c05a9ef77430a6b4081a01969d2bf4
* | | | | | Merge pull request #84100 from matthiasbeyer/update-favamarkuskowa2020-04-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | fava: 1.13 -> 1.14
| * | | | | | fava: 1.13 -> 1.14Matthias Beyer2020-04-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
* | | | | | | Merge pull request #83799 from cole-h/cantataPeter Hoeg2020-04-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | cantata: make qtmultimedia and vlc optional
| * | | | | | | cantata: make qtmultimedia and vlc optionalCole Helbling2020-03-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream defaults vlc to off. Its only purpose is as an alternative to QtMultimedia for "MPD HTTP stream playback" [1]. Similarly, provide a toggle for qtmultimedia, in case somebody wants to disable HTTP stream playback. [1] https://github.com/CDrummond/cantata/blob/efa907c8e03d052718f14834eb968da86d1c34d8/CMakeLists.txt#L51
* | | | | | | | parallel-full: init SQL and CSV support (#77619)tomberek2020-04-03
| |_|/ / / / / |/| | | | | | | | | | | | | Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
* | | | | | | Merge pull request #84157 from kylesferrazza/remove-howoldis-linkDomen Kožar2020-04-03
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | change howoldis link to status page link
| * | | | | | nixpkgs manual preface: change howoldis link to status page linkKyle Sferrazza2020-04-02
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #81223 from aaronjanse/init-papermcMichele Guerini Rocco2020-04-03
|\ \ \ \ \ \ | |/ / / / / |/| | | | | papermc: init at 1.15.2r121
| * | | | | papermc: init at 1.15.2r121Aaron Janse2020-04-02
| | | | | |
* | | | | | joypixels: 5.0.2 → 5.5.0Jan Tojnar2020-04-03
| | | | | |
* | | | | | Merge pull request #83967 from r-ryantm/auto-update/fusee-interfacee-tkMario Rodas2020-04-02
|\ \ \ \ \ \ | | | | | | | | | | | | | | fusee-interfacee-tk: 1.0.0 -> 1.0.1
| * | | | | | fusee-interfacee-tk: 1.0.0 -> 1.0.1R. RyanTM2020-04-01
| | | | | | |
* | | | | | | Merge pull request #83978 from r-ryantm/auto-update/imgproxyMario Rodas2020-04-02
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | imgproxy: 2.8.1 -> 2.11.0
| * | | | | | | imgproxy: 2.8.1 -> 2.11.0R. RyanTM2020-04-01
| |/ / / / / /
* | | | | | | Merge pull request #83859 from zowoq/slirp4netnsMario Rodas2020-04-02
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | slirp4netns: 0.4.4 -> 1.0.0
| * | | | | | | slirp4netns: 0.4.4 -> 1.0.0zowoq2020-03-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/rootless-containers/slirp4netns/releases/tag/v1.0.0
* | | | | | | | Merge pull request #83258 from mmilata/sympa-6.2.54Silvan Mosberger2020-04-03
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | nixos/sympa: fix outgoing emails, update package version
| * | | | | | | | nixos/sympa: fix outgoing messagingMartin Milata2020-03-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because ProtectKernelModules implies NoNewPrivileges, postfix's sendmail executable, which is setgid, wasn't able to send mail.
| * | | | | | | | sympa: build with --enable-fhsMartin Milata2020-03-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update module accordingly.
| * | | | | | | | sympa: 6.2.52 -> 6.2.54Martin Milata2020-03-21
| | | | | | | | |
* | | | | | | | | Merge pull request #84087 from Izorkin/mariadb-tokudbFlorian Klink2020-04-02
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | mariadb: update build configuration.
| * | | | | | | | | mariadb: fix deps buildIzorkin2020-04-02
| | | | | | | | | |
| * | | | | | | | | mariadb: add zstd compressionIzorkin2020-04-02
| | | | | | | | | |