196873 Commits

Author SHA1 Message Date
worldofpeace
debe4ff0e4
Merge pull request #69293 from romildo/upd.mate
Update some mate packages patch version
2019-09-25 22:29:04 -04:00
Peter Simons
920a2c4060 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.0 from Hackage revision
43ab24038a.
2019-09-26 02:30:51 +02:00
Travis Whitaker
5641dedb3a GHCJS: Build on Hydra 2019-09-25 17:03:40 -07:00
Dmitry Kalinkin
b3472597b7
Merge branch 'staging-next' into staging
Fixes eval on darwin after #69072

Tested using maintainers/scripts/eval-release.sh before and after to see
that the fix works
2019-09-25 19:31:32 -04:00
Dmitry Kalinkin
c455adcc42
Merge branch 'master' into staging-next
Fixes eval on darwin after #69072

Resolved conflict in pkgs/tools/security/thc-hydra/default.nix
Basically had to revert a1c0e10564f9a6281e14d7a7279b8589521e2c48 which
adapts #69210 to master that doesn't yet have
329a88efa78126ae7413807ce58000eab49e82d9

Tested using maintainers/scripts/eval-release.sh before and after to see
that the fix works
2019-09-25 19:21:46 -04:00
Silvan Mosberger
96ac71d680
Merge pull request #69431 from B4dM4n/teamspeak-client-build
teamspeak-client: fix stuck build
2019-09-26 00:14:32 +02:00
Matthew Bauer
11497a81a3
Merge pull request #69111 from rvolosatovs/fix/libcanberra-gtk
Fix libcanberra-gtk{2,3} on Darwin
2019-09-25 17:37:19 -04:00
worldofpeace
7e36240337
Merge pull request #68921 from davidtwco/pastel-init
pastel: init at 0.5.3
2019-09-25 17:08:52 -04:00
Daniel Albert
d27f4bf0a1 cura: 4.2.1 -> 4.3.0
See https://ultimaker.com/learn/ultimaker-cura-4-3-available-now for
more info.
2019-09-25 22:53:21 +02:00
Daniel Albert
55e5c32425 curaengine: 4.2.1 -> 4.3.0
See https://ultimaker.com/learn/ultimaker-cura-4-3-available-now for
more info.
2019-09-25 22:53:08 +02:00
Maximilian Bosch
99b12cfc08
prometheus-wireguard-exporter: 3.0.1 -> 3.1.0
Although this is a minor release, this only contains a single, but
improtant bugfix: https://github.com/MindFlavor/prometheus_wireguard_exporter/releases/tag/3.1.0
2019-09-25 22:07:41 +02:00
Maximilian Bosch
841af89e3c
clipman: init at 1.0.1 2019-09-25 21:53:28 +02:00
Fabian Möller
7ddc19ba8c
teamspeak-client: fix stuck build 2019-09-25 21:36:39 +02:00
Filipe Regadas
cf72659ca0
fixup! Updated list of urls 2019-09-25 20:08:50 +01:00
Marek Mahut
a28f136bdb
Merge pull request #69297 from aanderse/zabbix
nixos/zabbixServer: move pid file from default (/tmp) to /run/zabbix …
2019-09-25 20:35:50 +02:00
Sirio Balmelli
e1ff31dd91 plantuml-syntax: add vim plugin
Add https://github.com/aklt/plantuml-syntax to vim-plugins

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
2019-09-25 20:30:35 +02:00
Thomas Tuegel
75ced8ec93
libsrtp: Use multiple outputs to reduce closure size 2019-09-25 13:07:20 -05:00
Thomas Tuegel
315a049f0b
SDL: Do not propagate -dev outputs at runtime 2019-09-25 13:07:20 -05:00
Thomas Tuegel
9d35ea756e
spandsp: Use multiple outputs to reduce closure size 2019-09-25 13:07:20 -05:00
Thomas Tuegel
6cbf0b4bd2
hdf5: Use multiple outputs to reduce closure size 2019-09-25 13:07:20 -05:00
Thomas Tuegel
0f5769df77
kate: No propagatedBuildInputs
kate does not have a `dev` output, so it should not have
`propagatedBuildInputs`, as this propagates other `dev` outputs into the user
environment.
2019-09-25 13:07:20 -05:00
Thomas Tuegel
f012fc8f61
ibus: Use multiple outputs to reduce closure size 2019-09-25 13:07:19 -05:00
Thomas Tuegel
338742effd
tremor: Use multiple outputs to reduce closure size 2019-09-25 13:06:30 -05:00
Thomas Tuegel
459ea150e8
extra-cmake-modules: addEnvHooks: Use targetOffset 2019-09-25 13:06:30 -05:00
Thomas Tuegel
2f623ef527
extra-cmake-modules: Remove doc/ from xdgDataSubdirs 2019-09-25 13:06:30 -05:00
Thomas Tuegel
4edb8ade3d
konsole: Remove spurious wrapper 2019-09-25 13:06:30 -05:00
edef
429644bf4c nixos/rabbitmq: use an attrset for example configItems 2019-09-25 17:38:00 +00:00
Robin Gloster
1f4e9c6439
Merge pull request #69417 from max-wittig/patch-2
gitlab-runner: 12.2.0 -> 12.3.0
2019-09-25 18:46:32 +02:00
markuskowa
389c287b90
Merge pull request #69398 from Evils-Devils/fancontrol
nixos/fancontrol: init
2019-09-25 18:34:16 +02:00
Chuck
a45b3ad89f
makeWrapper: Remove unused extraFlagsArray feature
There is a bug in this feature: It allows extra arguments to leak in
from the environment. For example:

  $ export extraFlagsArray=date
  $ man ls

Note that you get the man page for date rather than for ls. This happens
because 'man' happens to use a wrapper (to add groff to its PATH).

An attempt to fix this was made in 5ae18574fce in PR #19328 for
issue #2537, but 1. That change didn't actually fix the problem because
it addressed makeWrapper's environment during the build process, not the
constructed wrapper script's environment after installation, and 2. That
change was apparently accidentally lost when merged with 7ff6eec5fd8.

Rather than trying to fix the bug again, we remove the extraFlagsArray
feature, since it has never been used in the public repo in the ten
years it has been available.

wrapAclocal continues to use its own, separate flavor of extraFlagsArray
in a more limited context. The analogous bug there was fixed in
4d7d10da6b1 in 2011.
2019-09-25 09:23:09 -07:00
Evils-Devils
6765f049f2
Update nixos/modules/services/hardware/fancontrol.nix
Co-Authored-By: markuskowa <markus.kowalewski@gmail.com>
2019-09-25 17:31:20 +02:00
Evils-Devils
44e2ff26b8
Update nixos/modules/services/hardware/fancontrol.nix
Co-Authored-By: markuskowa <markus.kowalewski@gmail.com>
2019-09-25 17:24:49 +02:00
Robin Gloster
d4212d66a8
linuxPackages.r8168: 8.046.00 -> 8.047.00 2019-09-25 17:09:26 +02:00
Evils
401b0b0c7b fancontrol: load config from configuration.nix 2019-09-25 17:05:09 +02:00
Albert Safin
8fcbbc94ef nim: 0.20.2 -> 1.0.0 2019-09-25 15:01:44 +00:00
Robin Gloster
0fe41d4a87
linuxPackages.jool: 4.0.0 -> 4.0.5 2019-09-25 16:46:32 +02:00
Max Wittig
92d5acb41a
gitlab-runner: 12.2.0 -> 12.3.0 2019-09-25 15:53:55 +02:00
Peter Simons
4f31c024d1 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.0 from Hackage revision
a1a41a1b56.
2019-09-25 15:29:47 +02:00
Peter Simons
933c885761 cabal2nix: add override to keep the ghc-8.6.x version compiling 2019-09-25 15:29:46 +02:00
Peter Simons
cfb580f6c5 cabal2nix: switch default version to the one compiled by ghc-8.8.1 2019-09-25 15:29:46 +02:00
Peter Simons
e234266c38 haskell-bencode: mark the package broken with ghc-8.8.x 2019-09-25 15:29:46 +02:00
Peter Simons
ab64a69b54 haskell-src: mark the package broken with ghc-8.8.x 2019-09-25 15:29:46 +02:00
Peter Simons
4485fc595d haskell-memory: use the latest version when compiling with ghc-8.8.1 2019-09-25 15:29:46 +02:00
Peter Simons
7321582c7d haskell-microlens: use the latest version when compiling with ghc-8.8.1 2019-09-25 15:29:46 +02:00
Peter Simons
ba0b08074c haskell-shelly: use the latest version when compiling with ghc-8.8.1 2019-09-25 15:28:40 +02:00
Peter Simons
17c3cfd9f0 haskell-hackage-db: use the latest version when compiling with ghc-8.8.1 2019-09-25 15:28:40 +02:00
Peter Simons
e49df9257c haskell-string-qq: use the latest version when compiling with ghc-8.8.1 2019-09-25 15:28:40 +02:00
Peter Simons
b2c43483b0 haskell-hpack: patch the build to make it succeed with ghc-8.8.1 2019-09-25 15:28:40 +02:00
Olli Helenius
21977c055d haskellPackages.hadolint: fix build by disabling static linking 2019-09-25 15:28:40 +02:00
Guillaume Bouchard
50d128e16c haskellPackages.MemoTrie: remove dontCheck and dontHaddock overrides.
It works fine with (at least):
  - haskellPackages.MemoTrie
  - haskellPackages.ghc844.MemoTrie
2019-09-25 15:28:40 +02:00