Commit graph

236024 commits

Author SHA1 Message Date
Silvan Mosberger 5ae3fb2c38
lib/strings: Add floatToString 2020-07-25 21:43:09 +02:00
Daniël de Kok f1bc04254b
Merge pull request #93805 from r-ryantm/auto-update/mc
mc: 4.8.24 -> 4.8.25
2020-07-25 20:44:22 +02:00
Daniël de Kok 370a71c74f
Merge pull request #93619 from Parasrah/go-task
go-task: init at 2.8.1
2020-07-25 20:41:26 +02:00
Parasrah 669155b09d go-task: init at 2.8.1 2020-07-25 20:27:03 +02:00
Silvan Mosberger 883af843c3
Merge pull request #93275 from evanjs/openrazer/2.8.0
openrazer: 2.7.0 -> 2.8.0
2020-07-25 18:57:51 +02:00
Daniël de Kok 6150631458
Merge pull request #93809 from danieldk/makemkv-1.15.2
makemkv: 1.15.1 -> 1.15.2
2020-07-25 18:06:26 +02:00
deliciouslytyped c45f9a1e70
qtile: 0.13.0 -> 0.16.0 (#93705)
* qtile: 0.13.0 -> 0.16.0

* qtile: refactoring to use setuptools_scm solution used in other places in nixpkgs
2020-07-25 17:51:57 +02:00
Milan 56fcf7891b
openjdk: build with empty pre-version (#92947)
The removes the "-internal" suffix from the OpenJDK version string.
Some applications, like the Jetbrains IDEs, check for a suffix to
determine if a stable JDK is used.
Thanks to @liff for the hint in #92837!
2020-07-25 17:21:41 +02:00
Charlotte Van Petegem 194d749582 eid-mw: update description to mention pkcs11Modules in firefox wrapper 2020-07-25 16:57:47 +02:00
Charlotte Van Petegem 49dba9c90b firefox: support for PKCS#11 modules in wrapper 2020-07-25 16:57:46 +02:00
Emery Hemingway d800d1e884 fixup! nixos/yggdrasil: add manual section 2020-07-25 16:34:20 +02:00
Emery Hemingway 764a9252a3 nixos/yggdrasil: add manual section 2020-07-25 16:34:20 +02:00
Emery Hemingway 39deb82e4b nixos/yggdrasil.nix: test 300::/7 addresses 2020-07-25 16:34:20 +02:00
Emery Hemingway a8780387ba nixos/dhcpd: make authoritative mode optional
There are circumstances where running secondary DHCP servers in
non-authoritative mode is advantageous. Retain the previous
authoritative behavior as a default.
2020-07-25 16:33:04 +02:00
Vladimír Čunát 2b7c0dcdaa
Merge branch 'staging-next'
Rebuild on Hydra seems OK-ish.
mongodb.nix needed some conflict resolution (scons versions);
all four versions seem to build fine.
2020-07-25 16:18:40 +02:00
Daniël de Kok fdbae69e8c
Merge pull request #93747 from danieldk/onednn-no-sse4.1
oneDNN: compile without -msse4.1
2020-07-25 13:36:41 +02:00
Jan Tojnar 352749e577
ostree: enable ed25519 support
This was omitted in the latest update.

Only adds ~400 KB.

It required adding openssl to tests so I tacked on some cleanups.
In particular, the GI_TYPELIB_PATH was already being set in the wrapper
so we can remove it from the module (not sure why Gtk was even there).

Also switched away from using pkgconfig and docbook_xsl aliases
and reordered the expression a bit.
2020-07-25 12:54:18 +02:00
Peter Simons 9f771202c1 neuron-notes: create a top-level attribute for haskellPackages.neuron
The obvious choice, "neuron", is already taken by a python package, so I called
it "neuron-notes" instead. If anyone has a better suggestion how to call this
entry, please let me know.
2020-07-25 12:53:29 +02:00
Lassulus 45e2ff349f
tor-browser: disable hardening by default (#93154)
* tor-browser: disable hardening by default

this seems to cause crashes with certain tabs.
relevant issue: https://github.com/NixOS/nixpkgs/issues/86356

* Update pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix

Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2020-07-25 12:44:06 +02:00
Daniël de Kok 0cfaf025b1 makemkv: add danieldk as a maintainer 2020-07-25 12:08:33 +02:00
Daniël de Kok 12186bfb5d makemkv: 1.15.1 -> 1.15.2
Upstream changes:

- Massive internal rewrite, some improvements and small bugfixes
- Muxer updated to the latest matroska specification
- Advanced usage changes:
  * Sdftool included as standalone executable
  * Drive speed control option
2020-07-25 11:58:48 +02:00
Adrian a6133b7a39
writers.makeScriptWriter: fix on Darwin\MacOS (#93757)
* writers.makeScriptWriter: fix on Darwin\MacOS

On Darwin a script cannot be used as an interpreter in a shebang line, which
causes scripts produced with makeScriptWriter (and its derivatives) to fail at
run time if the used interpreter was wrapped with makeWrapper (as in the case
of python3.withPackages).

This commit fixes the problem by detecting if the interpreter is a script
and prepending its shebang to the final interpreter line.

For example if used interpreter is;
```
/nix/store/ynwv137n2650qy39swcflxbcygk5jwv1-python3-3.8.3-env/bin/python
```

which is a script with following shebang:
```
#! /nix/store/knd85yc7iwli8344ghav3zli8d9gril0-bash-4.4-p23/bin/bash -e
```

then the shebang line in the produced script will be
```
#! /nix/store/knd85yc7iwli8344ghav3zli8d9gril0-bash-4.4-p23/bin/bash -e /nix/store/ynwv137n2650qy39swcflxbcygk5jwv1-python3-3.8.3-env/bin/python
```

This works on Darwin since there does not seem to be a limit to the length
of the shabang line and the shebang lines support multiple arguments to
the interpreters (as opposed to linux where the kernel imposes a strict limit
on shebang lengh and everything following the interpreter is passed to it
as a single string).

fixes; #93609
related to: #65351 #11133 (and probably a bunch of others)

NOTE: scripts produced on platforms other than Darwin will remain unmodified
by this PR. However it might worth considering extending this fix to BSD systems
in general. I didn't do it since I have no way of testing it on systems other
than MacOS and linux.

* writers.makeScriptWriter: fix typo in comment

* writers.makeScriptWriter: fail build if interpreter of interpreter is a script
2020-07-25 11:47:20 +02:00
Lassulus a2ba53f4e1
Merge pull request #93758 from adrian-gierakowski/improve-writers.writePython
writers.writePython2 and writePython3: use "bare" python if no deps are needed
2020-07-25 11:43:56 +02:00
Lassulus 032775d0ac
Merge pull request #93788 from chkno/syncthing-test
nixos/tests: Add test for syncthing
2020-07-25 11:40:06 +02:00
Daniël de Kok bd437f83ba
Merge pull request #93775 from r-ryantm/auto-update/clib
clib: 1.11.3 -> 1.11.4
2020-07-25 11:39:22 +02:00
Daniël de Kok e74c497824
Merge pull request #93783 from equirosa/tut
tut: 0.0.13 -> 0.0.14
2020-07-25 11:33:17 +02:00
Daniël de Kok 95fabdf3e3
Merge pull request #93803 from vaibhavsagar/bump-polyml
polyml: 5.8 -> 5.8.1
2020-07-25 11:28:39 +02:00
R. RyanTM 7ae31068a7 mc: 4.8.24 -> 4.8.25 2020-07-25 09:22:56 +00:00
Vaibhav Sagar c177c436af polyml: 5.8 -> 5.8.1 2020-07-25 18:31:43 +10:00
Sebastien Bourdeauducq ecafef0dd8 pam_p11: add 2020-07-25 09:37:48 +02:00
Vincent Laporte f4a95e8465 ocamlPackages.markup: 0.7.5 → 0.8.2 2020-07-25 06:06:41 +02:00
Marek Mahut 941f2eab00
Merge pull request #93529 from xtruder/pkgs/cloud-hypervisor/init
cloud-hypervisor: init at 0.8.0
2020-07-25 04:56:05 +02:00
Sebastien Bariteau 9ab83c6eed
ugrep: init at 2.4.1 (#93296) 2020-07-25 11:16:21 +10:00
lewo 703cbe11af
Merge pull request #93727 from r-ryantm/auto-update/docker-credential-gcr
docker-credential-gcr: 2.0.1 -> 2.0.2
2020-07-25 02:35:01 +02:00
Scott Worley 140247cd8a nixos/tests: Add test for syncthing 2020-07-24 15:51:14 -07:00
Vladyslav M 7adb91df59
Merge pull request #93786 from r-ryantm/auto-update/fio
fio: 3.20 -> 3.21
2020-07-24 23:56:37 +03:00
R. RyanTM 563d5fa7cc fio: 3.20 -> 3.21 2020-07-24 20:27:33 +00:00
Peter Simons dbacb52ad8
Merge pull request #92461 from NixOS/haskell-updates
Update Haskell package set to LTS 16.6 (plus other fixes)
2020-07-24 22:13:40 +02:00
Peter Simons c8c80478e1 sad: comment out the broken build
I cannot mark this package broken in a way that doesn't break OfBorg.
2020-07-24 22:01:00 +02:00
Peter Simons e8e0ca289c haskell-shower: jailbreak to fix the build with ghc-8.10.x 2020-07-24 21:58:58 +02:00
Peter Simons 3b46d9a65e all-cabal-hashes: update to Hackage at 2020-07-24T00:16:27Z 2020-07-24 21:38:22 +02:00
Benjamin Hipple fd0febffda
Merge pull request #93741 from r-ryantm/auto-update/luigi
luigi: 3.0.0 -> 3.0.1
2020-07-24 15:34:16 -04:00
Maximilian Bosch 5345c19cf1
diffoscope: 152 -> 153
Closes #93785
ChangeLog: https://diffoscope.org/news/diffoscope-153-released/
2020-07-24 21:28:03 +02:00
Peter Simons f4d4fdcbf0 haskell-dhall: use latest version for ghc-8.10.x so that we can build with the latest repline library 2020-07-24 21:13:25 +02:00
Daniël de Kok 3b772b681c
Merge pull request #93780 from 06kellyjac/deno_1.2.1
deno: 1.2.0 -> 1.2.1
2020-07-24 21:03:57 +02:00
Daniël de Kok deeb49ee4c
Merge pull request #93776 from Pamplemousse/codeql
codeql: 2.2.3 -> 2.2.4
2020-07-24 21:02:28 +02:00
Peter Simons b5613e78fd hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-11-g7fa9100-dirty from Hackage revision
8af27e77a0.
2020-07-24 20:56:38 +02:00
Peter Simons 1d96606e34 haskell-dhall: clean up and drop obsolete overrides 2020-07-24 20:55:19 +02:00
Peter Simons dd74d6ba9a hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-11-g7fa9100 from Hackage revision
8af27e77a0.
2020-07-24 20:55:07 +02:00
Peter Simons 4c8da32eae hackage2nix: update list of broken builds
Ping @cdepillabout because of termonad.
2020-07-24 20:55:02 +02:00