| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | docs: acme: Fix typoorigin/nh2-docs-acme-typo | Niklas Hambüchen | 2021-06-06 | 1 | -1/+1 |
| * | Merge pull request #125909 from fortuneteller2k/silicon•••silicon: 0.4.1 -> 0.4.2 | Robert Scott | 2021-06-06 | 1 | -3/+3 |
| |\ | |||||
| | * | silicon: 0.4.1 -> 0.4.2 | fortuneteller2k | 2021-06-06 | 1 | -3/+3 |
| * | | Merge pull request #125472 from veprbl/pr/clang_12_darwin_fix•••llvmPackages_12.compiler-rt: fix build on darwin | Robert Scott | 2021-06-06 | 2 | -0/+73 |
| |\ \ | |||||
| | * | | llvmPackages_12.compiler-rt: fix build on darwin•••``` /tmp/nix-build-compiler-rt-libc-12.0.0.drv-0/compiler-rt-12.0.0.src/lib/sanitizer_common/sanitizer_mac.cpp:617:7: error: use of undeclared identifier 'TARGET_OS_IOS' if (TARGET_OS_IOS || TARGET_OS_TV) return 6; ^ /tmp/nix-build-compiler-rt-libc-12.0.0.drv-0/compiler-rt-12.0.0.src/lib/sanitizer_common/sanitizer_mac.cpp:617:24: error: use of undeclared identifier 'TARGET_OS_TV' if (TARGET_OS_IOS || TARGET_OS_TV) return 6; ^ /tmp/nix-build-compiler-rt-libc-12.0.0.drv-0/compiler-rt-12.0.0.src/lib/sanitizer_common/sanitizer_mac.cpp:618:7: error: use of undeclared identifier 'TARGET_OS_WATCH' if (TARGET_OS_WATCH) return 13; ^ /tmp/nix-build-compiler-rt-libc-12.0.0.drv-0/compiler-rt-12.0.0.src/lib/sanitizer_common/sanitizer_mac.cpp:687:7: error: use of undeclared identifier 'TARGET_OS_IOS' if (TARGET_OS_IOS || TARGET_OS_TV) ^ /tmp/nix-build-compiler-rt-libc-12.0.0.drv-0/compiler-rt-12.0.0.src/lib/sanitizer_common/sanitizer_mac.cpp:687:24: error: use of undeclared identifier 'TARGET_OS_TV' if (TARGET_OS_IOS || TARGET_OS_TV) ^ /tmp/nix-build-compiler-rt-libc-12.0.0.drv-0/compiler-rt-12.0.0.src/lib/sanitizer_common/sanitizer_mac.cpp:689:12: error: use of undeclared identifier 'TARGET_OS_WATCH' else if (TARGET_OS_WATCH) ^ 6 errors generated. ``` | Dmitry Kalinkin | 2021-06-03 | 2 | -0/+73 |
| * | | | Merge pull request #125100 from hurricanehrndz/fix/tree-sitter-on-darwin•••treesitter: include CXX headers when compiling with clang Darwin | Mario Rodas | 2021-06-06 | 1 | -0/+3 |
| |\ \ \ | |||||
| | * | | | tree-sitter: explicitly incl CXX headers on Darwin•••clang needs to find headers + libraries for compiling with libc++. On Darwin we will include CXX headers when compiling C. This closes #124396 | Carlos Hernandez | 2021-06-04 | 1 | -0/+3 |
| * | | | | Merge pull request #125870 from r-ryantm/auto-update/go-toml•••go-toml: 1.9.1 -> 1.9.2 | Mario Rodas | 2021-06-06 | 1 | -2/+2 |
| |\ \ \ \ | |||||
| | * | | | | go-toml: 1.9.1 -> 1.9.2 | R. RyanTM | 2021-06-05 | 1 | -2/+2 |
| * | | | | | epiphany: 40.1 -> 40.2 | R. RyanTM | 2021-06-06 | 1 | -2/+2 |
| * | | | | | evolution-data-server: 3.40.1 -> 3.40.2 | R. RyanTM | 2021-06-06 | 1 | -2/+2 |
| * | | | | | gnome.gnome-calendar: 40.1 -> 40.2 | R. RyanTM | 2021-06-06 | 1 | -2/+2 |
| * | | | | | gnome.gnome-software: 40.1 -> 40.2 | R. RyanTM | 2021-06-06 | 1 | -2/+2 |
| * | | | | | gnome.gnome-boxes: 40.1 -> 40.2 | R. RyanTM | 2021-06-06 | 1 | -2/+2 |
| * | | | | | gnome.gnome-maps: 40.1 -> 40.2 | R. RyanTM | 2021-06-06 | 1 | -2/+2 |
| * | | | | | Merge pull request #125892 from r-ryantm/auto-update/lazygit•••lazygit: 0.28.1 -> 0.28.2 | Fabian Affolter | 2021-06-06 | 1 | -2/+2 |
| |\ \ \ \ \ | |||||
| | * | | | | | lazygit: 0.28.1 -> 0.28.2 | R. RyanTM | 2021-06-06 | 1 | -2/+2 |
| | |/ / / / | |||||
| * | | | | | Merge pull request #125683 from talyz/test-driver-pipefail•••nixos/test-driver: Run commands with pipefail set | Robert Hensing | 2021-06-06 | 17 | -86/+107 |
| |\ \ \ \ \ | |||||
| | * | | | | | nixosTests.*: Don't use the `-q` flag with grep when used with curl•••The `-q` flag makes grep close the pipe early, which curl doesn't handle gracefully, but exits with an error like "(23) Failed writing body". | talyz | 2021-06-05 | 11 | -74/+74 |
| | * | | | | | nixosTests.nginx*: nginxUnstable -> nginxMainline•••Stop using the old `nginxUnstable` alias, which is invalid in tests since 3edde6562e19698da69a499881e0a2e4f5a497a2. | talyz | 2021-06-05 | 2 | -3/+3 |
| | * | | | | | nixos/test-driver: Run commands with error handling•••Bash's standard behavior of not propagating non-zero exit codes through a pipeline is unexpected and almost universally unwanted. Default to setting `pipefail` for the command being run; it can still be turned off by prefixing the pipeline with `set +o pipefail` if needed. Also, set `errexit` and `nonunset` options to make the first command of consecutive commands separated by `;` fail, and disallow dereferencing unset variables respectively. | talyz | 2021-06-05 | 4 | -9/+30 |
| * | | | | | | Merge pull request #125288 from rnhmjoj/wpa-race-fix•••nixos/wireless: make wireless.interfaces mandatory | Michele Guerini Rocco | 2021-06-06 | 2 | -17/+19 |
| |\ \ \ \ \ \ | |||||
| | * | | | | | | nixos/wireless: make wireless.interfaces mandatory•••This is the only way to solve issue #101963, for now. | rnhmjoj | 2021-06-01 | 2 | -17/+19 |
| * | | | | | | | erlangR21: 21.3.8.23 -> 21.3.8.24 | R. RyanTM | 2021-06-06 | 1 | -2/+2 |
| * | | | | | | | Merge pull request #125854 from r-ryantm/auto-update/cpp-utilities | Doron Behar | 2021-06-06 | 1 | -2/+2 |
| |\ \ \ \ \ \ \ | |||||
| | * | | | | | | | cpp-utilities: 5.10.3 -> 5.10.4 | R. RyanTM | 2021-06-05 | 1 | -2/+2 |
| | | |_|/ / / / | |/| | | | | | |||||
| * | | | | | | | Merge pull request #81061 from leungbk/emacs-pkgs•••Add Emacs packages: - apheleia - evil-markdown - git-undo - isearch-prop - mu4e-patch - youtube-dl | Anderson Torres | 2021-06-06 | 8 | -0/+278 |
| |\ \ \ \ \ \ \ | |||||
| | * | | | | | | | emacsPackages.apheleia: init at 2021-05-23 | Brian Leung | 2021-06-05 | 2 | -0/+38 |
| | * | | | | | | | emacsPackages.mu4e-patch: init at 2019-05-09 | Brian Leung | 2021-06-05 | 2 | -0/+40 |
| | * | | | | | | | emacsPackages.evil-markdown: init at 2020-06-01 | Brian Leung | 2021-06-05 | 2 | -0/+48 |
| | * | | | | | | | emacsPackages.youtube-dl: init at 2018-10-12 | Brian Leung | 2021-06-05 | 2 | -0/+38 |
| | * | | | | | | | emacsPackages.git-undo: init at 2019-10-13 | Brian Leung | 2021-06-05 | 2 | -0/+38 |
| | * | | | | | | | emacsPackages.isearch-prop: init at 2019-05-01 | Brian Leung | 2021-06-05 | 2 | -0/+38 |
| | * | | | | | | | emacsPackages.isearch-plus: init at 2021-01-01 | Brian Leung | 2021-06-05 | 2 | -0/+38 |
| * | | | | | | | | Merge pull request #125837 from r-burns/stockfish•••stockfish: 12 -> 13 | Peter Simons | 2021-06-06 | 1 | -4/+4 |
| |\ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ |/| | | | | | | | |||||
| | * | | | | | | | stockfish: 12 -> 13 | Ryan Burns | 2021-06-05 | 1 | -4/+4 |
| * | | | | | | | | ocamlPackages.cooltt: init at unstable-2021-05-25 | fortuneteller2k | 2021-06-06 | 2 | -0/+49 |
| | |/ / / / / / |/| | | | | | | |||||
| * | | | | | | | Merge pull request #125859 from nicbk/patch2•••veikk-linux-driver-gui: init at 2.0 | Sandro | 2021-06-06 | 3 | -0/+44 |
| |\ \ \ \ \ \ \ | |||||
| | * | | | | | | | veikk-linux-driver-gui: init at 2.0•••Add configuration utility to configure VEIKK brand digitizers | Nicolás Kennedy | 2021-06-05 | 3 | -0/+44 |
| * | | | | | | | | Merge pull request #125833 from babbaj/master•••depotdownloader: init at 2.4.1 | Sandro | 2021-06-06 | 3 | -0/+139 |
| |\ \ \ \ \ \ \ \ | |||||
| | * | | | | | | | | depotdownloader: init at 2.4.1 | Babbaj | 2021-06-05 | 3 | -0/+139 |
| * | | | | | | | | | Merge pull request #125883 from cdepillabout/purescript-0.14.2 | Sandro | 2021-06-06 | 1 | -3/+4 |
| |\ \ \ \ \ \ \ \ \ | |||||
| | * | | | | | | | | | purescript: add changelog | (cdep)illabout | 2021-06-06 | 1 | -0/+1 |
| | * | | | | | | | | | purescript: 0.14.0 -> 0.14.2 | (cdep)illabout | 2021-06-06 | 1 | -3/+3 |
| * | | | | | | | | | | Merge pull request #125829 from KarlJoad/verilator-license•••verilator: specify lgpl3Only license | Sandro | 2021-06-06 | 1 | -1/+1 |
| |\ \ \ \ \ \ \ \ \ \ | |||||
| | * | | | | | | | | | | verilator: specify lgpl3Only and artistic2 licenses | Karl Hallsby | 2021-06-05 | 1 | -1/+1 |
| | | |_|_|_|/ / / / / | |/| | | | | | | | | |||||
| * | | | | | | | | | | Merge pull request #125875 from schnusch/remote-touchpad | Sandro | 2021-06-06 | 1 | -3/+3 |
| |\ \ \ \ \ \ \ \ \ \ | |||||
| | * | | | | | | | | | | remote-touchpad: 1.0.1 -> 1.0.2 | schnusch | 2021-06-06 | 1 | -3/+3 |
| * | | | | | | | | | | | ngrok-2: fix aarch64-darwin logic | Jonathan Ringer | 2021-06-05 | 1 | -1/+2 |
| | |_|/ / / / / / / / |/| | | | | | | | | | |||||
| * | | | | | | | | | | Merge pull request #123433 from kira-bruneau/gamemode | Sandro | 2021-06-06 | 5 | -0/+217 |
| |\ \ \ \ \ \ \ \ \ \ | |||||
