Orivej Desh
d028c74c3c
androidndkPkgs: expose libc in cc.lib ( #87737 )
...
Fixes cross compiling gdb that uses targetPackages.stdenv.cc.cc.lib.
2020-05-16 09:22:24 +00:00
Mario Rodas
a52a066524
pueue: 0.4.0 -> 0.5.0
2020-05-16 04:20:00 -05:00
Mario Rodas
6f71eaeb8c
tflint: 0.15.5 -> 0.16.0
...
Changelog: https://github.com/terraform-linters/tflint/releases/tag/v0.16.0
2020-05-16 04:20:00 -05:00
Mario Rodas
e534efaae8
protobuf3_12: init at 3.12.0
...
Changelog: https://github.com/protocolbuffers/protobuf/releases/tag/v3.12.0
2020-05-16 04:20:00 -05:00
Vincent Laporte
df70dcb6fb
ocaml-ng.ocamlPackages_4_11.ocaml: init at 4.11.0+α1
2020-05-16 10:27:00 +02:00
adisbladis
13356e3301
Merge pull request #87872 from fare-patches/ethereum
...
Ethereum updates
2020-05-16 10:25:55 +02:00
adisbladis
e5415d1cc5
Merge pull request #87926 from zowoq/codeowners-podman
...
.github/CODEOWNERS: add podman team
2020-05-16 10:20:00 +02:00
adisbladis
2cbfe21649
emacsPackages.haskell-unicode-input-method: Fix build
2020-05-16 09:11:32 +01:00
adisbladis
21351cfccf
emacsPackages.ocaml-mode: Remove broken package
2020-05-16 09:11:31 +01:00
Jon
15b3d9d277
python3Packages.venvShellHook: add postVenvCreation ( #87850 )
...
* python3Packages.venvShellHook: add postVenvCreation
* python: docs: add postVenvCreation explaination
2020-05-16 09:34:11 +02:00
Jörg Thalheim
3233d3f0e3
Merge pull request #81860 from zowoq/rm-rkt
2020-05-16 08:25:46 +01:00
Jörg Thalheim
b15831b608
Merge pull request #87871 from Mic92/uwsgi
2020-05-16 08:04:58 +01:00
Jan Tojnar
2434754d1c
simple-scan: format with nixpkgs-fmt
2020-05-16 09:00:30 +02:00
zowoq
89b6d5f175
.github/CODEOWNERS: add podman team
2020-05-16 14:03:51 +10:00
Anderson Torres
33dd04ea4a
Merge pull request #84241 from magnetophon/bjumblr
...
bjumblr: init at 0.2
2020-05-16 00:44:23 -03:00
zowoq
f0fbd9deec
umoci: install manpages, switch to buildGoModule
2020-05-16 13:37:01 +10:00
zowoq
adb9f60c13
doctl: 1.40.0 -> 1.43.0, switch to buildGoModule
...
https://github.com/digitalocean/doctl/releases/tag/v1.41.0
https://github.com/digitalocean/doctl/releases/tag/v1.42.0
https://github.com/digitalocean/doctl/releases/tag/v1.43.0
2020-05-16 13:14:07 +10:00
Gabor Greif
d89ae377d4
wasmtime-0.16.0: re-enable tests on Darwin
...
The issue https://github.com/bytecodealliance/wasmtime/issues/1556
appears to be fixed.
2020-05-16 04:56:26 +02:00
Gabor Greif
b39717abff
wasmtime: 0.15.0 -> 0.16.0
2020-05-16 04:42:02 +02:00
Dennis Gosnell
82263944a7
Merge pull request #87875 from wnklmnn/jugglinglab
...
jugglinglab: init at 1.2
2020-05-16 09:40:37 +09:00
zowoq
d1e7b0049c
go_1_13: 1.13.8 -> 1.13.11
2020-05-16 10:31:23 +10:00
zowoq
469f14ceec
go_1_13: stop setting GOPATH
...
a1e13f6140
2020-05-16 10:31:12 +10:00
Tim Steinbach
2c74af6d97
linux/hardened/patches/5.6: 5.6.12.a -> 5.6.13.a
2020-05-15 20:23:17 -04:00
Tim Steinbach
6fd700adf1
linux/hardened/patches/5.4: 5.4.40.a -> 5.4.41.a
2020-05-15 20:23:15 -04:00
Tim Steinbach
d18d18a45d
linux/hardened/patches/4.19: 4.19.122.a -> 4.19.123.a
2020-05-15 20:23:09 -04:00
zowoq
5195aed617
rkt: remove
2020-05-16 09:23:07 +10:00
Francois-Rene Rideau
46b3eca5fd
solc: 0.5.15 -> 0.6.8
2020-05-15 19:18:11 -04:00
Jan Tojnar
32b8ed7380
Merge pull request #87744 from jtojnar/ch-g-s
2020-05-15 23:57:56 +02:00
Benjamin Hipple
c88290789c
doc: Rewrite python onboarding tutorials in manual
...
Based on some feedback in #87094 and discussion with @fridh, this re-organizes
the onboarding tutorial in the Nixpkgs manual's python section, so that we start
with the simplest, most ad-hoc examples and work our way up. This progresses
from:
1. How to create an temporary python env at the cmdline, then
2. How to create a specific python env for a single script, then
3. How to create a specific python env for a project in a shell.nix, then
4. How to install a specific python env globally on the system or in a user profile.
Additionally, I've tried to standardize on some of the "best practice" ways of
doing things:
1. Instead of saying that this command style is "supported but strongly not
discouraged", I've just deleted it to avoid confusion.
Bad: nix-shell -p python38Packages.numpy python38Packages.toolz
Good: nix-shell -p 'python38.withPackages(ps: with ps; [ numpy toolz ])'
2. In the portion where we show how to add stuff to the user's
`XDG_CONFIG_HOME`, use overlays instead of `config.nix`. The former can do
everything the latter can do, but is also much more generic and powerful,
because it can compose with other files, compose with other envs, compose
with overlays that do things like swap whether tensorflow and pytorch are
built openblas/mkl/cuda stacks, and so on. The user is eventually going to
see the overlay, so to avoid confusion let's standardize on it.
2020-05-15 22:43:16 +02:00
Elis Hirwing
52d2e99182
php74: 7.4.4 -> 7.4.5
...
Changelog: https://www.php.net/ChangeLog-7.php#7.4.5
2020-05-15 22:10:03 +02:00
Vladyslav M
84765451c2
Merge pull request #87896 from bbigras/starship
2020-05-15 22:50:36 +03:00
Vincent Laporte
a91007dbc4
ocamlPackages.ipaddr: remove at 2.6.1
...
This is a legacy version for OCaml 4.02
2020-05-15 21:40:31 +02:00
Peter Simons
5e6f290e32
Merge pull request #87805 from NixOS/haskell-updates
...
Update Haskell package set to LTS 15.12 (plus other fixes)
2020-05-15 21:39:12 +02:00
Florian Klink
b611581162
Merge pull request #87885 from flokli/fly-6.1.0
...
fly: 6.0.0 -> 6.1.0
2020-05-15 21:21:15 +02:00
Peter Simons
a4282b6dc1
all-cabal-hashes: update to Hackage at 2020-05-15T17:34:35Z
2020-05-15 21:19:10 +02:00
Peter Simons
e037eb4046
ghcjs: mark build as broken
...
ghcjs hasn't compiled for several weeks.
2020-05-15 21:19:10 +02:00
Robert Hensing
4353027d0b
haskell/generic-builder.nix: Fix C lib multiple inclusions
...
Allow the darwin links code to overwrite libs that were already
copied, because C dependencies can occur multiple times.
Solves errors like
ln: failed to create symbolic link '/nix/store/higpc9xavwcjjzdipz7m9ly03bh7iy2z-hercules-ci-agent-source-0.7.0/lib/links/libboost_context.dylib': File exists
2020-05-15 21:02:08 +02:00
Peter Simons
4ed93cc494
haskell-ghc-lib-parser-ex: update overrides for the update 8.10.x version
2020-05-15 21:02:08 +02:00
Peter Simons
dcbcd742e0
haskell-dhall: update override for the latest version on ghc-8.10.x
2020-05-15 21:02:08 +02:00
Malte Brandy
a61cf82b6d
hackagePackages.neuron: Fix build
2020-05-15 21:02:08 +02:00
Peter Simons
730024fcaa
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.15.3-1-gb7c82db from Hackage revision
4c409c7b8e
.
2020-05-15 21:01:59 +02:00
Peter Simons
ca8cb6044e
hackage2nix: update list of broken packages
2020-05-15 21:01:34 +02:00
Peter Simons
cf8bd2cd22
LTS Haskell 15.12
2020-05-15 21:01:34 +02:00
Tor Hedin Brønner
59e2e44f5b
Merge pull request #87202 from r-ryantm/auto-update/glade
...
gnome3.glade: 3.22.2 -> 3.36.0
2020-05-15 20:52:25 +02:00
Andreas Rammhold
b0774e2d0e
Merge pull request #87811 from andir/firefox
...
firefox: 76.0 -> 76.0.1
2020-05-15 20:21:24 +02:00
zimbatm
99efa7c85c
Revert "Get rid of go 1.13 ( #86036 )"
...
This partially reverts commit 3e0aa4af2d
.
See the discussion in the PR.
2020-05-15 19:26:53 +02:00
Jan Tojnar
e20c3296a4
glade: 3.32.2 → 3.36.0
...
https://ftp.gnome.org/pub/GNOME/sources/glade/3.36/glade-3.36.0.news
2020-05-15 19:26:02 +02:00
Jan Tojnar
fe7e564467
glade: format with nixpkgs-fmt
...
also switch away from dependency aliases and reorder the attributes a bit
2020-05-15 19:21:12 +02:00
Jan Tojnar
6b17638dc6
glade: rename from gnome3.glade
2020-05-15 19:21:12 +02:00
Mario Rodas
202ded0110
go-tools: 2020.1.3 -> 2020.1.4
2020-05-15 10:12:14 -07:00