Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1fe82110febd
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3a0da440a354
Choose a head ref

Commits on Jan 6, 2020

  1. gerrit: 3.0.2 -> 3.1.2

    r-ryantm committed Jan 6, 2020
    Copy the full SHA
    46736ce View commit details

Commits on Jan 15, 2020

  1. imageworsener: init at 1.3.3

    emilazy committed Jan 15, 2020
    Copy the full SHA
    9fb7712 View commit details

Commits on Jan 31, 2020

  1. Copy the full SHA
    acab138 View commit details

Commits on Feb 2, 2020

  1. chatterino2: fix install on macOS

    On Darwin/macOS, chatterino2's install phase copies no files into the
    output. `make install` does not copy chatterino2.app. Copy the .app
    manually, fixing the installation.
    
    With this patch, chatterino2 almost works on macOS. Issue #42893
    applies, so to make chatterino2 work, you must install qtbase in your
    environment. For example:
    
        $ nix-env -iA nixpkgs.qt5.qtbase
        $ open ~/.nix-profile/Applications/chatterino.app
    strager committed Feb 2, 2020
    Copy the full SHA
    cdd1c21 View commit details
  2. chatterino2: fix: Could not find the Qt platform plugin "cocoa" in ""

    wrapQtAppsHook ignores Mach-O binaries [1]. Additionally, wrapQtAppsHook
    doesn't look inside $out/Applications [2], which is where chatterino2 is
    installed. This means chatterino2 for Darwin/macOS is not wrapped
    properly, causing the following error when launched:
    
    > qt.qpa.plugin: Could not find the Qt platform plugin "cocoa" in ""
    >
    > This application failed to start because no Qt platform plugin could
    > be initialized. Reinstalling the application may fix this problem.
    
    On macOS, explicitly wrap chatterino2's executable.
    
    [1] pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh line 85
    [2] pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh line 76
    strager committed Feb 2, 2020
    Copy the full SHA
    1221a6b View commit details

Commits on Feb 10, 2020

  1. Copy the full SHA
    ee027c1 View commit details
  2. Copy the full SHA
    9d45292 View commit details

Commits on Feb 11, 2020

  1. Copy the full SHA
    93943ac View commit details
  2. Copy the full SHA
    31bbcc2 View commit details
  3. merriweather: init at 2.005

    emilazy committed Feb 11, 2020
    Copy the full SHA
    21ea3dd View commit details
  4. Copy the full SHA
    7f1ab05 View commit details

Commits on Feb 12, 2020

  1. libubox: 2017-09-29 -> unstable-2020-01-20

    Milan Pässler committed Feb 12, 2020
    Copy the full SHA
    8f58386 View commit details
  2. uqmi: 2016-12-19 -> unstable-2019-06-27

    Milan Pässler committed Feb 12, 2020
    Copy the full SHA
    e9cb703 View commit details
  3. ubus: init at unstable-2020-01-05

    Milan Pässler committed Feb 12, 2020
    Copy the full SHA
    020e93b View commit details
  4. uci: init at unstable-2020-01-27

    Milan Pässler committed Feb 12, 2020
    Copy the full SHA
    6ad91bb View commit details
  5. netifd: init at unstable-2020-01-18

    Milan Pässler committed Feb 12, 2020
    Copy the full SHA
    d24c403 View commit details
  6. Add Nixpkgs support for Dhall

    One of the motivations for this change is the following Discourse
    discussion:
    
    https://discourse.dhall-lang.org/t/offline-use-of-prelude/137
    
    Many users have requested Dhall support for "offline" packages
    that can be fetched/built/installed using ordinary package
    management tools (like Nix) instead of using Dhall's HTTP import system.
    I will continue to use the term "offline" to mean Dhall package
    builds that do not use Dhall's language support for HTTP imports (and
    instead use the package manager's support for HTTP requests, such
    as `pkgs.fetchFromGitHub`)
    
    The goal of this change is to document what is the idiomatic way to
    implement "offline" Dhall builds by implementing Nixpkgs support
    for such builds.  That way when other package management tools ask
    me how to package Dhall with their tools I can refer them to how it
    is done in Nixpkgs.
    
    This change contains a fully "offline" build for the largest Dhall
    package in existence, known as "dhall-packages" (not to be confused
    with `dhallPackages`, which is our Nix attribute set containing
    Dhall packages).
    
    The trick to implementing offline builds in Dhall is to take
    advantage of Dhall's support for semantic integrity checks.  If an
    HTTP import is protected by an integrity check and a cached build
    product matches the integrity check then the HTTP import is never
    resolved and the expression is instead fetched from cache.
    
    By "installing" dependencies in a pre-seeded and isolated cache
    we can replace remote HTTP imports with dependencies that have
    been built and supplied by Nix instead.
    
    The offline nature of the builds are enforced by compiling the
    Haskell interpreter with the `-f-with-http` flag, which disables
    the interpreter's support for HTTP imports.  If a user forgets
    to supply a necessary dependency as a Nix build product then the
    build fails informing them that HTTP imports are disabled.
    
    By default, built packages are "binary distributions", containing
    just a cache product and a Dhall expression which can be used to
    resolve the corresponding cache product.
    
    Users can also optionally enable a "source distribution" of a package
    which already includes the equivalent fully-evaluated Dhall code (for
    convenience), but this is disabled by default to keep `/nix/store`
    utilization as compact as possible.
    Gabriella439 committed Feb 12, 2020
    Copy the full SHA
    38f1d70 View commit details
  7. Simplify dhall-kubernetes packages

    There is no need to provide a separate `kubernetesVersion` argument
    since the `file` argument works just fine
    Gabriella439 committed Feb 12, 2020
    Copy the full SHA
    822ad56 View commit details

Commits on Feb 14, 2020

  1. Copy the full SHA
    8dca340 View commit details

Commits on Feb 15, 2020

  1. blender: 2.81a -> 2.82

    r-ryantm committed Feb 15, 2020
    Copy the full SHA
    8a2c2e4 View commit details
  2. blender: fix build on darwin

    We don't compile blender with alembic. The linux build is able to detect
    that, but this is not done for darwin. This explicitly disables alembic
    to fix blender build on darwin.
    veprbl committed Feb 15, 2020
    Copy the full SHA
    ac56038 View commit details

Commits on Feb 16, 2020

  1. Copy the full SHA
    3388643 View commit details

Commits on Feb 17, 2020

  1. Change formatting of record fields

    ... as requested by @Profpatsch
    Gabriella439 committed Feb 17, 2020
    Copy the full SHA
    32ed1c5 View commit details
  2. mrtrix: init at 3.0_RC3_latest

    This package consists mostly of command-line tools, but there are also two qt5-based image viewers (`mrview` and `shview`). I have provided an option `withGui = true` to allow users to disable these viewers. They work on NixOS but unlikely to work out-of-the box on non-NixOS Linux (see #62169), but I've refrained from asserting that they shouldn't be built since a user might want to fiddle with runtime GL stuff.
    
    Some programs rely on FSL and/or ANTs backends; I have somewhat heavy-handedly wrapped all binaries to point to ANTs, while FSL is not available in Nix at the moment and has a non-commercial license so would be convenient to disable by default for Hydra builds.
    bcdarwin committed Feb 17, 2020
    Copy the full SHA
    9a2cd20 View commit details
  3. Copy the full SHA
    a539bbf View commit details

Commits on Feb 18, 2020

  1. libreoffice: wrapper: add hunspell dirs to DICPATH

    LibreOffice doesn't know where to look for hunspell dictionaries on
    NixOS but we can use the DICPATH env var to point to them. Now
    spellchecking with system dictionaries works.
    
    Note that some of these dictionaries are built from LibreOffice repos -
    this is preferable to building them as part of LO as other applications
    can use them.
    mmilata committed Feb 18, 2020
    Copy the full SHA
    c95bfd2 View commit details

Commits on Feb 19, 2020

  1. ideogram: 1.3.0 -> 1.3.2

    r-ryantm committed Feb 19, 2020
    Copy the full SHA
    6986f40 View commit details
  2. mapnik: 3.0.22 -> 3.0.23

    r-ryantm committed Feb 19, 2020
    Copy the full SHA
    e4442fb View commit details
  3. Copy the full SHA
    3d3ba53 View commit details
  4. asdf: 3.3.3 -> 3.3.4

    r-ryantm committed Feb 19, 2020
    Copy the full SHA
    720a81b View commit details
  5. freeorion: fix build fail

    fixes #79805
    tex authored Feb 19, 2020
    Copy the full SHA
    e49c0a0 View commit details
  6. Copy the full SHA
    4e5aeca View commit details

Commits on Feb 20, 2020

  1. Copy the full SHA
    4d2a825 View commit details
  2. Copy the full SHA
    3e9d2f8 View commit details
  3. Copy the full SHA
    d1ee615 View commit details
  4. fluent-bit: 1.3.7 -> 1.3.8

    marsam committed Feb 20, 2020
    Copy the full SHA
    612130c View commit details
  5. Copy the full SHA
    1f4d7a7 View commit details
  6. nextcloud: 18.0.0 -> 18.0.1

    r-ryantm committed Feb 20, 2020
    Copy the full SHA
    91250fe View commit details
  7. Copy the full SHA
    8700c4b View commit details
  8. gildas: 20200101_a -> 20200201_a

     - Upgrade gildas to the latest version
    
     - Remove a patch that has been included upstream
    
     - Re-enable parallel building (fixed upstream)
    smaret committed Feb 20, 2020
    Copy the full SHA
    7667207 View commit details
  9. bluez-alsa: 2.0.0 -> 2.1.0

    lheckemann committed Feb 20, 2020
    Copy the full SHA
    7fa751b View commit details
  10. Copy the full SHA
    7724ef7 View commit details
  11. runInLinuxVM: Ensure tools requiring /etc/passwd work

    This includes, but is not limited to:
    
     * whoami
     * nix >= 2.3.1
    
    See
    
     * NixOS/nixpkgs#71157
     * NixOS/nixops#1216
     * nix-community/nixops-libvirtd#5
    samueldr committed Feb 20, 2020
    Copy the full SHA
    687e219 View commit details

Commits on Feb 21, 2020

  1. rtl_433: 19.08 -> 20.02

    r-ryantm committed Feb 21, 2020
    Copy the full SHA
    031db7b View commit details
  2. Copy the full SHA
    dc71384 View commit details
  3. Copy the full SHA
    7598200 View commit details
  4. Copy the full SHA
    104dad8 View commit details
  5. Copy the full SHA
    928c365 View commit details
  6. Copy the full SHA
    1e2c51f View commit details
  7. go-tools: 2019.2.2 -> 2020.1.3

    marsam committed Feb 21, 2020
    Copy the full SHA
    6559330 View commit details
Showing with 7,336 additions and 3,097 deletions.
  1. +1 −2 lib/systems/default.nix
  2. +21 −1 maintainers/maintainer-list.nix
  3. +0 −32 nixos/doc/manual/configuration/x-windows.xml
  4. +3 −2 nixos/doc/manual/development/releases.xml
  5. +13 −2 nixos/doc/manual/release-notes/rl-2009.xml
  6. +0 −160 nixos/modules/config/gtk/gtk.nix
  7. +0 −259 nixos/modules/config/qt.nix
  8. +102 −0 nixos/modules/config/qt5.nix
  9. +16 −5 nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix
  10. +1 −1 nixos/modules/installer/tools/nix-fallback-paths.nix
  11. +1 −2 nixos/modules/module-list.nix
  12. +3 −3 nixos/modules/security/acme.nix
  13. +1 −0 nixos/modules/services/computing/slurm/slurm.nix
  14. +23 −2 nixos/modules/services/misc/parsoid.nix
  15. +2 −0 nixos/modules/services/networking/stubby.nix
  16. +1 −1 nixos/modules/services/networking/wireguard.nix
  17. +2 −1 nixos/modules/services/torrent/transmission.nix
  18. +3 −3 nixos/modules/services/x11/desktop-managers/pantheon.nix
  19. +3 −2 nixos/modules/services/x11/display-managers/gdm.nix
  20. +33 −6 nixos/modules/virtualisation/virtualbox-image.nix
  21. +8 −0 nixos/release-combined.nix
  22. +15 −0 nixos/tests/containers-imperative.nix
  23. +9 −9 nixos/tests/systemd-networkd-vrf.nix
  24. +3 −3 pkgs/applications/audio/cantata/default.nix
  25. +38 −0 pkgs/applications/audio/sonic-lineup/default.nix
  26. +3 −3 pkgs/applications/audio/spotify-tui/default.nix
  27. +7 −11 pkgs/applications/editors/android-studio/default.nix
  28. +2 −2 pkgs/applications/editors/ghostwriter/default.nix
  29. +3 −3 pkgs/applications/gis/whitebox-tools/default.nix
  30. +2 −2 pkgs/applications/graphics/ideogram/default.nix
  31. +12 −3 pkgs/applications/graphics/qview/default.nix
  32. +7 −4 pkgs/applications/misc/blender/default.nix
  33. +2 −2 pkgs/applications/misc/calibre/default.nix
  34. +33 −0 pkgs/applications/misc/etesync-dav/default.nix
  35. +2 −2 pkgs/applications/misc/hugo/default.nix
  36. +1 −1 pkgs/applications/misc/lutris/chrootenv.nix
  37. +3 −3 pkgs/applications/networking/browsers/chromium/upstream-info.nix
  38. +385 −385 pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
  39. +385 −385 pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
  40. +0 −26 pkgs/applications/networking/browsers/firefox/fix-pa-context-connect-retval.patch
  41. +0 −25 pkgs/applications/networking/browsers/firefox/no-buildconfig.patch
  42. +1 −10 pkgs/applications/networking/browsers/firefox/packages.nix
  43. +2 −2 pkgs/applications/networking/browsers/vivaldi/default.nix
  44. +2 −2 pkgs/applications/networking/cluster/helm/default.nix
  45. +2 −2 pkgs/applications/networking/cluster/luigi/default.nix
  46. +1 −0 pkgs/applications/networking/gns3/default.nix
  47. +9 −2 pkgs/applications/networking/instant-messengers/chatterino2/default.nix
  48. +6 −6 pkgs/applications/networking/instant-messengers/discord/default.nix
  49. +5 −5 pkgs/applications/networking/instant-messengers/gomuks/default.nix
  50. +2 −2 pkgs/applications/networking/instant-messengers/zoom-us/default.nix
  51. +3 −3 pkgs/applications/networking/irc/weechat/scripts/weechat-autosort/default.nix
  52. +3 −3 pkgs/applications/networking/mailreaders/claws-mail/default.nix
  53. +3 −3 pkgs/applications/networking/seafile-client/default.nix
  54. +13 −3 pkgs/applications/networking/sniffers/ettercap/default.nix
  55. +2 −2 pkgs/applications/networking/ssb/patchwork/default.nix
  56. +2 −1 pkgs/applications/office/libreoffice/src-fresh/primary.nix
  57. +2 −1 pkgs/applications/office/libreoffice/src-still/primary.nix
  58. +7 −0 pkgs/applications/office/libreoffice/wrapper.sh
  59. +8 −1 pkgs/applications/office/todoman/default.nix
  60. +3 −3 pkgs/applications/radio/rtl_433/default.nix
  61. +4 −8 pkgs/applications/science/astronomy/gildas/default.nix
  62. +0 −12 pkgs/applications/science/astronomy/gildas/imager-py3.patch
  63. +77 −0 pkgs/applications/science/biology/mrtrix/default.nix
  64. +2 −2 pkgs/applications/science/electronics/gtkwave/default.nix
  65. +26 −0 pkgs/applications/science/math/R/0001-Disable-test-pending-upstream-fix.patch
  66. +7 −5 pkgs/applications/science/math/R/default.nix
  67. +2 −2 pkgs/applications/version-management/gerrit/default.nix
  68. +2 −2 pkgs/applications/version-management/git-repo/default.nix
  69. +7 −5 pkgs/applications/version-management/git-repo/import-ssl-module.patch
  70. +2 −2 pkgs/applications/video/devede/default.nix
  71. +10 −1 pkgs/applications/video/kodi/default.nix
  72. +3 −3 pkgs/applications/video/peek/default.nix
  73. +42 −10 pkgs/applications/virtualization/crun/default.nix
  74. +9 −7 pkgs/applications/virtualization/umoci/default.nix
  75. +3 −3 pkgs/applications/window-managers/sway/lock-fancy.nix
  76. +1 −1 pkgs/build-support/src-only/default.nix
  77. +4 −0 pkgs/build-support/vm/default.nix
  78. +5 −5 pkgs/data/fonts/babelstone-han/default.nix
  79. +55 −0 pkgs/data/fonts/cozette/default.nix
  80. +1 −1 pkgs/data/fonts/iosevka/default.nix
  81. +34 −0 pkgs/data/fonts/merriweather-sans/default.nix
  82. +35 −0 pkgs/data/fonts/merriweather/default.nix
  83. +6 −11 pkgs/data/fonts/rictydiminished-with-firacode/default.nix
  84. +6 −4 pkgs/data/fonts/sudo/default.nix
  85. +4 −4 pkgs/data/fonts/vazir-fonts/default.nix
  86. +3 −3 pkgs/data/icons/qogir-icon-theme/default.nix
  87. +2 −2 pkgs/data/themes/mojave/default.nix
  88. +6 −6 pkgs/data/themes/nordic-polar/default.nix
  89. +18 −10 pkgs/data/themes/nordic/default.nix
  90. +2 −2 pkgs/data/themes/qogir/default.nix
  91. +2 −2 pkgs/data/themes/yaru/default.nix
  92. +7 −5 pkgs/desktops/mate/mate-themes/default.nix
  93. +5 −5 pkgs/development/beam-modules/hex/default.nix
  94. +1 −1 pkgs/development/compilers/go/1.12.nix
  95. +1 −1 pkgs/development/compilers/go/1.13.nix
  96. +19 −0 pkgs/development/compilers/llvm/10/bintools.nix
  97. +53 −0 pkgs/development/compilers/llvm/10/clang/compiler-rt-baremetal.patch
  98. +122 −0 pkgs/development/compilers/llvm/10/clang/default.nix
  99. +30 −0 pkgs/development/compilers/llvm/10/clang/purity.patch
  100. +33 −0 pkgs/development/compilers/llvm/10/compiler-rt-codesign.patch
  101. +73 −0 pkgs/development/compilers/llvm/10/compiler-rt.nix
  102. +204 −0 pkgs/development/compilers/llvm/10/default.nix
  103. +62 −0 pkgs/development/compilers/llvm/10/find-darwin-sdk-version.patch
  104. +55 −0 pkgs/development/compilers/llvm/10/libc++/default.nix
  105. +6 −0 pkgs/development/compilers/llvm/10/libc++/setup-hook.sh
  106. +67 −0 pkgs/development/compilers/llvm/10/libc++abi.nix
  107. +12 −0 pkgs/development/compilers/llvm/10/libcxxabi-no-threads.patch
  108. +16 −0 pkgs/development/compilers/llvm/10/libcxxabi-wasm.patch
  109. +14 −0 pkgs/development/compilers/llvm/10/libunwind.nix
  110. +33 −0 pkgs/development/compilers/llvm/10/lld.nix
  111. +31 −0 pkgs/development/compilers/llvm/10/lldb-procfs.patch
  112. +101 −0 pkgs/development/compilers/llvm/10/lldb.nix
  113. +26 −0 pkgs/development/compilers/llvm/10/llvm-outputs.patch
  114. +185 −0 pkgs/development/compilers/llvm/10/llvm.nix
  115. +26 −0 pkgs/development/compilers/llvm/10/openmp.nix
  116. +412 −0 pkgs/development/compilers/llvm/10/sanitizers-nongnu.patch
  117. +19 −0 pkgs/development/compilers/rust/1_41_0.nix
  118. +3 −0 pkgs/development/compilers/rust/default.nix
  119. +3 −0 pkgs/development/compilers/rust/rustc.nix
  120. +11 −3 pkgs/development/coq-modules/mathcomp/default.nix
  121. +68 −0 pkgs/development/dhall-modules/Prelude.nix
  122. +0 −9 pkgs/development/dhall-modules/default.nix
  123. +40 −0 pkgs/development/dhall-modules/dhall-kubernetes.nix
  124. +66 −0 pkgs/development/dhall-modules/dhall-packages.nix
  125. +0 −25 pkgs/development/dhall-modules/prelude/v3.nix
  126. +83 −0 pkgs/development/interpreters/dhall/build-dhall-package.nix
  127. +0 −18 pkgs/development/interpreters/dhall/default.nix
  128. +2 −2 pkgs/development/interpreters/jruby/default.nix
  129. +3 −3 pkgs/development/interpreters/jython/default.nix
  130. +39 −32 pkgs/development/interpreters/php/default.nix
  131. +3 −3 pkgs/development/libraries/CGAL/default.nix
  132. +17 −1 pkgs/development/libraries/cpp-utilities/default.nix
  133. +25 −0 pkgs/development/libraries/doctest/default.nix
  134. +2 −2 pkgs/development/libraries/hpx/default.nix
  135. +11 −6 pkgs/development/libraries/libfido2/default.nix
  136. +11 −0 pkgs/development/libraries/libfido2/detect_apple_ld.patch
  137. +4 −5 pkgs/development/libraries/liblinear/default.nix
  138. +4 −3 pkgs/development/libraries/libubox/default.nix
  139. +0 −2 pkgs/development/libraries/libyaml-cpp/default.nix
  140. +32 −0 pkgs/development/libraries/lyra/default.nix
  141. +2 −2 pkgs/development/libraries/mapnik/default.nix
  142. +1 −8 pkgs/development/libraries/seasocks/default.nix
  143. +2 −4 pkgs/development/libraries/sentencepiece/default.nix
  144. +57 −0 pkgs/development/libraries/sycl-info/default.nix
  145. +24 −0 pkgs/development/libraries/ubus/default.nix
  146. +25 −0 pkgs/development/libraries/uci/default.nix
  147. +4 −4 pkgs/development/lisp-modules/asdf/default.nix
  148. +2 −0 pkgs/development/node-packages/node-packages-v10.json
  149. +1,182 −572 pkgs/development/node-packages/node-packages-v10.nix
  150. +6 −6 pkgs/development/node-packages/node-packages-v12.nix
  151. +5 −5 pkgs/development/node-packages/node-packages-v13.nix
  152. +2 −2 pkgs/development/ocaml-modules/batteries/default.nix
  153. +8 −0 pkgs/development/ocaml-modules/pgocaml/ppx.nix
  154. +30 −15 pkgs/development/ocaml-modules/ppx_tools/default.nix
  155. +6 −6 pkgs/development/ocaml-modules/printbox/default.nix
  156. +2 −1 pkgs/development/python-modules/acoustics/default.nix
  157. +6 −1 pkgs/development/python-modules/ansible-lint/default.nix
  158. +2 −2 pkgs/development/python-modules/azure-mgmt-network/default.nix
  159. +2 −2 pkgs/development/python-modules/azure-mgmt-resource/default.nix
  160. +2 −2 pkgs/development/python-modules/azure-mgmt-storage/default.nix
  161. +27 −0 pkgs/development/python-modules/bespon/default.nix
  162. +2 −1 pkgs/development/python-modules/chalice/default.nix
  163. +3 −3 pkgs/development/python-modules/datadog/default.nix
  164. +3 −3 pkgs/development/python-modules/django-gravatar2/default.nix
  165. +55 −0 pkgs/development/python-modules/etesync/default.nix
  166. +65 −0 pkgs/development/python-modules/fastdtw/default.nix
  167. +2 −2 pkgs/development/python-modules/filebytes/default.nix
  168. +3 −3 pkgs/development/python-modules/flask-babelex/default.nix
  169. +58 −24 pkgs/development/python-modules/fluidasserts/default.nix
  170. +12 −7 pkgs/development/python-modules/furl/default.nix
  171. +34 −0 pkgs/development/python-modules/googletrans/default.nix
  172. +54 −0 pkgs/development/python-modules/graphql-core/default.nix
  173. +40 −0 pkgs/development/python-modules/graphql-server-core/default.nix
  174. +1 −0 pkgs/development/python-modules/httpretty/default.nix
  175. +10 −2 pkgs/development/python-modules/jinja2/default.nix
  176. +3 −3 pkgs/development/python-modules/jug/default.nix
  177. +4 −2 pkgs/development/python-modules/ldaptor/default.nix
  178. +14 −9 pkgs/development/python-modules/locustio/default.nix
  179. +3 −3 pkgs/development/python-modules/mockito/default.nix
  180. +3 −5 pkgs/development/python-modules/mysql-connector/default.nix
  181. +24 −21 pkgs/development/python-modules/poetry/default.nix
  182. +49 −0 pkgs/development/python-modules/promise/default.nix
  183. +26 −11 pkgs/development/python-modules/psutil/default.nix
  184. +5 −2 pkgs/development/python-modules/pybullet/default.nix
  185. +5 −5 pkgs/development/python-modules/pybullet/static-libs.patch
  186. +6 −2 pkgs/development/python-modules/pyfribidi/default.nix
  187. +17 −0 pkgs/development/python-modules/pyfribidi/pyfribidi-clang.patch
  188. +2 −2 pkgs/development/python-modules/pyftpdlib/default.nix
  189. +12 −0 pkgs/development/python-modules/pyopengl/default.nix
  190. +5 −0 pkgs/development/python-modules/pysaml2/default.nix
  191. +22 −0 pkgs/development/python-modules/pyscrypt/default.nix
  192. +4 −1 pkgs/development/python-modules/pytest-timeout/default.nix
  193. +9 −3 pkgs/development/python-modules/pywinrm/default.nix
  194. +119 −0 pkgs/development/python-modules/qiskit-terra/default.nix
  195. +2 −2 pkgs/development/python-modules/qtawesome/default.nix
  196. +7 −0 pkgs/development/python-modules/reproject/default.nix
  197. +33 −0 pkgs/development/python-modules/seaborn/0.9.1.nix
  198. +2 −2 pkgs/development/python-modules/tablib/default.nix
  199. +2 −2 pkgs/development/tools/analysis/flow/default.nix
  200. +3 −3 pkgs/development/tools/analysis/tflint/default.nix
  201. +10 −2 pkgs/development/tools/build-managers/bazel/default.nix
  202. +4 −4 pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
  203. +4 −5 pkgs/development/tools/go-tools/default.nix
  204. +2 −2 pkgs/development/tools/kubectx/default.nix
  205. +4 −4 pkgs/development/tools/misc/sccache/default.nix
  206. +1 −1 pkgs/development/tools/ocaml/dune/2.nix
  207. +45 −38 pkgs/development/tools/poetry2nix/poetry2nix/default.nix
  208. +25 −0 pkgs/development/tools/poetry2nix/poetry2nix/hooks/default.nix
  209. 0 pkgs/development/tools/poetry2nix/poetry2nix/{ → hooks}/pyproject-without-path.py
  210. +8 −0 pkgs/development/tools/poetry2nix/poetry2nix/hooks/remove-path-dependencies.sh
  211. +26 −22 pkgs/development/tools/poetry2nix/poetry2nix/lib.nix
  212. +12 −2 pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix
  213. +1 −1 pkgs/development/tools/poetry2nix/poetry2nix/overrides.nix
  214. +1 −1 pkgs/development/tools/poetry2nix/update
  215. +2 −2 pkgs/development/tools/scalafmt/default.nix
  216. +17 −9 pkgs/development/tools/skaffold/default.nix
  217. +2 −2 pkgs/development/tools/uftrace/default.nix
  218. +2 −2 pkgs/development/web/grails/default.nix
  219. +2 −2 pkgs/games/freeorion/default.nix
  220. +3 −3 pkgs/games/mnemosyne/default.nix
  221. +5 −5 pkgs/games/qgo/default.nix
  222. +2 −0 pkgs/games/steam/chrootenv.nix
  223. +135 −113 pkgs/misc/vim-plugins/generated.nix
  224. +14 −0 pkgs/misc/vim-plugins/overrides.nix
  225. +9 −7 pkgs/misc/vim-plugins/vim-plugin-names
  226. +9 −2 pkgs/os-specific/linux/firmware/fwupd/default.nix
  227. +2 −2 pkgs/os-specific/linux/kernel/linux-4.19.nix
  228. +2 −2 pkgs/os-specific/linux/kernel/linux-5.4.nix
  229. +2 −2 pkgs/os-specific/linux/kernel/linux-5.5.nix
  230. +3 −2 pkgs/servers/computing/slurm/default.nix
  231. +4 −4 pkgs/servers/http/apache-modules/mod_ca/default.nix
  232. +3 −2 pkgs/servers/http/apache-modules/mod_crl/default.nix
  233. +3 −19 pkgs/servers/http/apache-modules/mod_csr/default.nix
  234. +0 −66 pkgs/servers/http/apache-modules/mod_csr/openssl_setter_compat.h
  235. +2 −2 pkgs/servers/http/apache-modules/mod_ocsp/default.nix
  236. +2 −2 pkgs/servers/http/apache-modules/mod_pkcs12/default.nix
  237. +2 −19 pkgs/servers/http/apache-modules/mod_scep/default.nix
  238. +0 −66 pkgs/servers/http/apache-modules/mod_scep/openssl_setter_compat.h
  239. +2 −2 pkgs/servers/http/apache-modules/mod_spkac/default.nix
  240. +2 −2 pkgs/servers/http/apache-modules/mod_timestamp/default.nix
  241. +2 −2 pkgs/servers/mail/opensmtpd/default.nix
  242. +2 −1 pkgs/servers/monitoring/grafana/default.nix
  243. +2 −2 pkgs/servers/nextcloud/default.nix
  244. +3 −3 pkgs/servers/nosql/eventstore/default.nix
  245. +21 −0 pkgs/servers/search/elasticsearch/plugins.nix
  246. +2 −2 pkgs/servers/shairport-sync/default.nix
  247. +12 −5 pkgs/servers/sql/mariadb/default.nix
  248. +57 −0 pkgs/servers/sql/patroni/default.nix
  249. +2 −2 pkgs/servers/sql/postgresql/ext/postgis.nix
  250. +7 −6 pkgs/shells/powershell/default.nix
  251. +9 −8 pkgs/tools/admin/aws-vault/default.nix
  252. +3 −3 pkgs/tools/admin/google-cloud-sdk/default.nix
  253. +2 −2 pkgs/tools/bluetooth/bluez-alsa/default.nix
  254. +41 −0 pkgs/tools/graphics/imageworsener/default.nix
  255. +1 −1 pkgs/tools/graphics/netpbm/default.nix
  256. +2 −2 pkgs/tools/inputmethods/ibus/default.nix
  257. +39 −0 pkgs/tools/misc/codebraid/default.nix
  258. +24 −0 pkgs/tools/misc/colorz/default.nix
  259. +2 −2 pkgs/tools/misc/coreboot-utils/default.nix
  260. +3 −3 pkgs/tools/misc/datamash/default.nix
  261. +4 −4 pkgs/tools/misc/diffoscope/default.nix
  262. +14 −12 pkgs/tools/misc/flashrom/default.nix
  263. +2 −2 pkgs/tools/misc/fluent-bit/default.nix
  264. +9 −10 pkgs/tools/misc/ostree/default.nix
  265. +3 −6 pkgs/tools/misc/skim/default.nix
  266. +2 −2 pkgs/tools/misc/trac/default.nix
  267. +7 −5 pkgs/tools/networking/cassowary/default.nix
  268. +2 −2 pkgs/tools/networking/i2pd/default.nix
  269. +2 −2 pkgs/tools/networking/libreswan/default.nix
  270. +28 −0 pkgs/tools/networking/netifd/default.nix
  271. +3 −3 pkgs/tools/networking/nfdump/default.nix
  272. +2 −2 pkgs/tools/networking/siege/default.nix
  273. +4 −5 pkgs/tools/networking/termshark/default.nix
  274. +4 −3 pkgs/tools/networking/uqmi/default.nix
  275. +12 −5 pkgs/tools/networking/vde2/default.nix
  276. +32 −0 pkgs/tools/nix/nix-query-tree-viewer/default.nix
  277. +3 −3 pkgs/tools/package-management/nix/default.nix
  278. +3 −3 pkgs/tools/system/bfs/default.nix
  279. +16 −6 pkgs/tools/system/netdata/default.nix
  280. +534 −0 pkgs/tools/system/netdata/deps.nix
  281. +30 −0 pkgs/tools/system/netdata/go.d.plugin.nix
  282. +75 −101 pkgs/tools/system/netdata/no-files-in-etc-and-var.patch
  283. +3 −10 pkgs/tools/system/plan9port/builder.sh
  284. +6 −4 pkgs/tools/system/s-tui/default.nix
  285. +5 −5 pkgs/tools/text/shfmt/default.nix
  286. +3 −3 pkgs/tools/typesetting/tikzit/default.nix
  287. +23 −8 pkgs/tools/virtualization/nixos-container/nixos-container.pl
  288. +59 −13 pkgs/top-level/all-packages.nix
  289. +6 −1 pkgs/top-level/coq-packages.nix
  290. +28 −0 pkgs/top-level/dhall-packages.nix
  291. +2 −0 pkgs/top-level/ocaml-packages.nix
  292. +11 −11 pkgs/top-level/perl-packages.nix
  293. +2 −2 pkgs/top-level/php-packages.nix
  294. +22 −1 pkgs/top-level/python-packages.nix
3 changes: 1 addition & 2 deletions lib/systems/default.nix
Original file line number Diff line number Diff line change
@@ -36,9 +36,8 @@ rec {
else if final.isUClibc then "uclibc"
else if final.isAndroid then "bionic"
else if final.isLinux /* default */ then "glibc"
else if final.isMsp430 then "newlib"
else if final.isVc4 then "newlib"
else if final.isAvr then "avrlibc"
else if final.isNone then "newlib"
else if final.isNetBSD then "nblibc"
# TODO(@Ericson2314) think more about other operating systems
else "native/impure";
22 changes: 21 additions & 1 deletion maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -1085,6 +1085,12 @@
githubId = 7716744;
name = "Berno Strik";
};
brettlyons = {
email = "blyons@fastmail.com";
github = "brettlyons";
githubId = 3043718;
name = "Brett Lyons";
};
btlvr = {
email = "btlvr@protonmail.com";
github = "btlvr";
@@ -6648,6 +6654,12 @@
email = "jot.skrzyp@gmail.com";
name = "Jakub Skrzypnik";
};
skykanin = {
email = "skykanin@users.noreply.github.com";
github = "skykanin";
githubId = 3789764;
name = "skykanin";
};
sleexyz = {
email = "freshdried@gmail.com";
github = "sleexyz";
@@ -6790,6 +6802,12 @@
githubId = 4061736;
name = "Severen Redwood";
};
sstef = {
email = "stephane@nix.frozenid.net";
github = "fkstef";
githubId = 8668915;
name = "Stephane Schitter";
};
steell = {
email = "steve@steellworks.com";
github = "Steell";
@@ -7748,7 +7766,7 @@
email = "worldofpeace@protonmail.ch";
github = "worldofpeace";
githubId = 28888242;
name = "Worldofpeace";
name = "worldofpeace";
};
wscott = {
email = "wsc9tt@gmail.com";
@@ -8103,3 +8121,5 @@
name = "Asad Saeeduddin";
};
}


32 changes: 0 additions & 32 deletions nixos/doc/manual/configuration/x-windows.xml
Original file line number Diff line number Diff line change
@@ -160,38 +160,6 @@
package into your system environment. It should work for all Qt 5 library
versions.
</para>
<para>
With help of
<option>
<link linkend="opt-gtk.enable">
gtk
</link>
</option>
and
<option>
<link linkend="opt-qt.enable">
qt
</link>
</option>
modules you can declaratively set system-wide themes settings.
<programlisting>
gtk.enable = true;
gtk.theme = {
name = "Adwaita-dark";
package = pkgs.gnome-themes-extra;
};
gtk.iconTheme = {
name = "Adwaita";
package = pkgs.gnome3.adwaita-icon-theme;
};
qt.enable = true;
qt.platformTheme = "gtk3";
qt.style = {
name = "adwaita-dark";
package = pkgs.adwaita-qt;
};
</programlisting>
</para>
</simplesect>
<simplesect xml:id="custom-xkb-layouts">
<title>Custom XKB layouts</title>
5 changes: 3 additions & 2 deletions nixos/doc/manual/development/releases.xml
Original file line number Diff line number Diff line change
@@ -71,8 +71,9 @@
<para>
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/d6b08acd1ccac0d9d502c4b635e00b04d3387f06">
Update <literal>versionSuffix</literal> in
<literal>nixos/release.nix</literal></link>, use <literal>git log
--format=%an|wc -l</literal> to get the commit count
<literal>nixos/release.nix</literal></link>, use
<literal>git rev-list --count 17.09-beta</literal>
to get the commit count.
</para>
</listitem>
<listitem>
15 changes: 13 additions & 2 deletions nixos/doc/manual/release-notes/rl-2009.xml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
<itemizedlist>
<listitem>
<para>
Support is planned until the end of October 2020, handing over to 20.09.
Support is planned until the end of April 2021, handing over to 21.03.
</para>
</listitem>
</itemizedlist>
@@ -59,7 +59,18 @@

<itemizedlist>
<listitem>
<para />
<para>
Grafana is now built without support for phantomjs by default. Phantomjs support has been
<link xlink:href="https://grafana.com/docs/grafana/latest/guides/whats-new-in-v6-4/">deprecated in Grafana</link>
and the <package>phantomjs</package> project is
<link xlink:href="https://github.com/ariya/phantomjs/issues/15344#issue-302015362">currently unmaintained</link>.
It can still be enabled by providing <literal>phantomJsSupport = true</literal> to the package instanciation:
<programlisting>{
services.grafana.package = pkgs.grafana.overrideAttrs (oldAttrs: rec {
phantomJsSupport = false;
});
}</programlisting>
</para>
</listitem>
</itemizedlist>
</section>
160 changes: 0 additions & 160 deletions nixos/modules/config/gtk/gtk.nix

This file was deleted.

Loading