Mario Rodas
ea193e0555
Merge pull request #78828 from r-ryantm/auto-update/rshell
...
rshell: 0.0.25 -> 0.0.26
2020-02-01 04:16:27 -05:00
Mario Rodas
8aa3473514
Merge pull request #78842 from r-ryantm/auto-update/supercollider
...
supercollider: 3.10.3 -> 3.10.4
2020-02-01 04:09:11 -05:00
Vladimír Čunát
31ab6fdec5
Merge #78978 : lua5: Fix src URLs
...
The rebuilds happen because changing the end-part of URL
changes the name of the resulting file as placed into nix store
(those names were wrong/confusing before this change)
2020-02-01 09:52:56 +01:00
Chuck
d13360bfb7
lua5: Fix src URLs
...
The 672c3c1d2a
refactor accidentally
dropped the last version component from the source URLs. This change
puts its back.
$ for lua in lua5_{1,2,3};do nix-instantiate --json --eval . -A $lua.src.urls | jq -r '.[]' | xargs nix-prefetch-url; done
Before this change:
lua-5.1.tar.gz 1hbjhh211p82vhwqhx4mmhmvhv56060acnka80gbmfdk3q3bjnvz (wrong hash because this is lua 5.1.0. We want 5.1.5 )
lua-5.2.tar.gz HTTP error 404
lua-5.3.tar.gz HTTP error 404
After this change:
lua-5.1.5.tar.gz 0cskd4w0g6rdm2q8q3i4n1h3j8kylhs3rq8mxwl9vwlmlxbgqh16
lua-5.2.4.tar.gz 0jwznq0l8qg9wh5grwg07b5cy3lzngvl5m2nl1ikp6vqssmf9qmr <-- Desired hash
lua-5.3.5.tar.gz 1b2qn2rv96nmbm6zab4l877bd4zq7wpwm8drwjiy2ih4jqzysbhc
Converted to base16 with `nix-hash --type sha256 --to-base16`:
lua-5.1.5.tar.gz 2640fc56a795f29d28ef15e13c34a47e223960b0240e8cb0a82d9b0738695333 <-- Desired hash
lua-5.2.4.tar.gz b9e2e4aad6789b3b63a056d442f7b39f0ecfca3ae0f1fc0ae4e9614401b69f4b
lua-5.3.5.tar.gz 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac <-- Desired hash
2020-01-31 18:00:45 -08:00
Mario Rodas
5f192ddcf6
tflint: 0.13.3 -> 0.14.0
...
Changelog: https://github.com/terraform-linters/tflint/releases/tag/v0.14.0
2020-01-31 04:20:00 -05:00
Mario Rodas
7ec40ece4a
Merge pull request #78959 from kampka/drone-cli
...
drone-cli: 1.2.0 -> 1.2.1
2020-01-31 20:42:14 -05:00
Mario Rodas
fb6d39cbde
Merge pull request #78970 from zowoq/buildah
...
buildah: 1.13.1 -> 1.13.2
2020-01-31 20:38:55 -05:00
Timo Kaufmann
769928e213
Merge pull request #78779 from drewrisinger/dr-pr-python-cirq
...
python3Packages.cirq: init at 0.6.1
2020-02-01 00:29:53 +01:00
Marek Mahut
7b466774e9
Merge pull request #78896 from drewrisinger/dr-pr-lib-scs
...
lib.science.math.scs: 2.0.2 -> 2.1.1
2020-01-31 23:06:39 +01:00
Marek Mahut
fcd46443df
Merge pull request #78800 from yurrriq/update-scc
...
scc: 2.10.1 -> 2.11.0
2020-01-31 23:03:05 +01:00
zowoq
eaea88814f
buildah: 1.13.1 -> 1.13.2
...
https://github.com/containers/buildah/blob/v1.13.2/CHANGELOG.md#v1132-2020-01-29
2020-02-01 07:44:44 +10:00
Peter Simons
f206eea2cf
ghc-8.10.x: add a bunch of jailbreaks to fix builds
2020-01-31 22:13:06 +01:00
Drew Risinger
c13bf84d45
libraries.science.math.scs: 2.0.2 -> 2.1.1
2020-01-31 16:05:05 -05:00
Drew Risinger
74a0d4dc3c
python3Packages.cirq: init at 0.6.1
...
Add Google's Cirq package.
Uses: Quantum information science.
2020-01-31 16:02:21 -05:00
Peter Simons
a7712a1a31
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.15.0-16-g2971916 from Hackage revision
d77d0f7de2
.
2020-01-31 21:39:55 +01:00
Peter Simons
5e90d04ee7
haskell-bustle: simplify the override now that those changes are in cabal2nix
...
Might be of interest to @jtojnar.
2020-01-31 21:38:10 +01:00
Peter Simons
6d068993b5
haskell-relude-6.0.0.0 does not pass its doctest suite
2020-01-31 21:05:56 +01:00
Peter Simons
6516c12dbe
haskell-policeman: add overrides to provide newer versions of dependencies
2020-01-31 21:05:56 +01:00
Silvan Mosberger
8d4509e34d
haskell generic-builder: Fix package conf handling
...
Previously the package conf files were handled without paying attention
to the fact that it's pretty-printed output. One problem was discovered
with GHC 8.8.1 on Darwin, where the dynamic-library-dirs first field
seems to have increased in length, meaning while before it was
dynamic-library-dirs: some-small-directory-name
some-more-directories
Now it is
dynamic-library-dirs:
some-larger-directory-name
some-more-directories
Which breaks the code installed for https://github.com/NixOS/nixpkgs/pull/25537 ,
because that assumed the former format, resulting in the reoccurence of
the bug in https://github.com/NixOS/nixpkgs/issues/22810 , see
https://github.com/Infinisil/all-hies/issues/43
This commit fixes this by "unprettyfying" the package conf files before
processing them.
Closes https://github.com/NixOS/nixpkgs/pull/78738 .
2020-01-31 21:05:56 +01:00
Peter Simons
2b10aed0d7
ghc-8.8.x: update version overrides for microlens packages
2020-01-31 21:05:56 +01:00
Gabor Greif
6bedeceb8a
ghc: update 8.10.1 pre-release to announced rc1
...
https://mail.haskell.org/pipermail/ghc-devs/2020-January/018530.html
The version previously fetched was `8.10.0.20200108`.
2020-01-31 21:05:55 +01:00
Peter Simons
135cc0c58d
haskell-cabal-plan: update overrides for new version of base-compat
2020-01-31 21:05:55 +01:00
Jan Tojnar
4141619331
haskellPackages.bustle: fix building on Hydra
...
Bustle is proclaiming OtherLicense even though the code is licensed under LGPL 2.1+. This causes cabal2nix to set hydraPlatforms = stdenv.lib.platforms.none in hackage-packages.nix for the package.
Lets let's unset the attribute and fix the license.
2020-01-31 21:05:55 +01:00
Jan Tojnar
3430ded6c8
haskellPackages.bustle: clean up with lib.pipe
2020-01-31 21:05:55 +01:00
Peter Simons
8e8b8a5b6c
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.15.0-14-gb942b6a from Hackage revision
5556d14668
.
2020-01-31 21:05:44 +01:00
Peter Simons
78d58f61c5
hackage2nix: update list of broken packages
2020-01-31 21:05:39 +01:00
Peter Simons
3b5f3d1cb1
LTS Haskell 14.22
2020-01-31 21:05:38 +01:00
Peter Simons
ced62b07ba
Merge pull request #78955 from ijaketak/dhall-json_1_6_1
...
haskellPackages.dhall-json_1_6_1: prettyprinter_1_6_0
2020-01-31 20:30:30 +01:00
Peter Simons
05620d62dc
maude: update from version 2.7.1 to 3.0 (including full-maude)
2020-01-31 16:25:40 +01:00
Maximilian Bosch
b7b7fdae78
Merge pull request #78804 from evanjs/cargo-geiger/0.9.1
...
cargo-geiger: 0.9.0 -> 0.9.1
2020-01-31 16:01:23 +01:00
Christian Kampka
032fddf103
drone-cli: 1.2.0 -> 1.2.1
2020-01-31 15:43:37 +01:00
Mario Rodas
0281aa6a1f
Merge pull request #78504 from r-ryantm/auto-update/ethash
...
ethash: 0.4.2 -> 0.4.4
2020-01-31 08:50:55 -05:00
Mario Rodas
d8e8c8fcaa
Merge pull request #78638 from zowoq/skopeo
...
skopeo: 0.1.39 -> 0.1.40
2020-01-31 08:27:21 -05:00
Vincent Laporte
fa709922f3
coqPackages.tlc: disable for Coq > 8.10
2020-01-31 14:09:51 +01:00
Keito Kajitani
38149ff88d
haskellPackages.dhall-json_1_6_1: prettyprinter_1_6_0
2020-01-31 21:47:07 +09:00
Antonio Nuno Monteiro
a21c2fa3ea
ocamlformat: 0.12 -> 0.13.0 ( #78942 )
2020-01-31 10:48:37 +01:00
Lancelot SIX
a5a93e6873
Merge pull request #78774 from das-g/gdal-3.0.3
...
gdal: 3.0.1 -> 3.0.3
2020-01-31 09:26:08 +01:00
Daiderd Jordan
62bbc2abc1
Merge pull request #78404 from cust0dian/glances-darwin-build
...
pythonPackages.glances: fix darwin build
2020-01-31 08:50:28 +01:00
Maximilian Bosch
645ea323d7
Merge pull request #77989 from lblasc/llvm3-removal
...
llvm: remove 3.5, 3.8 and 4
2020-01-31 07:42:39 +01:00
R. RyanTM
8bcad60b8f
yodl: 4.02.01 -> 4.02.02
2020-01-30 22:21:00 -08:00
R. RyanTM
c47914016a
wiggle: 1.1 -> 1.2
2020-01-30 22:20:14 -08:00
Andreas Stührk
6ef537249f
skaffold: 1.0.1 -> 1.2.0
2020-01-30 22:04:17 -08:00
Dmitry Kalinkin
dc57bd84b0
yoda: provide python3Packages.yoda
2020-01-30 21:39:06 -08:00
Ilya Fedin
7eb5376127
libtgvoip: init at unstable-2020-01-21
2020-01-30 19:15:40 -08:00
worldofpeace
ab9e0ea36e
Merge pull request #78654 from lovesegfault/arcanist-20190127
...
arcanist: 20190905 -> 20200127
2020-01-30 21:25:31 -05:00
Jan Tojnar
9d886869cb
speechd: 0.8.8 → 0.9.1
...
0.9.0: https://lists.nongnu.org/archive/html/speechd-discuss/2019-01/msg00058.html
0.9.1: https://lists.nongnu.org/archive/html/speechd-discuss/2019-05/msg00000.html
2020-01-31 02:44:59 +01:00
Jan Tojnar
29d8a1c3f6
Merge pull request #78341 from riannucci/patch-1
...
pyenchant: Fix for darwin/macOS
2020-01-31 02:37:44 +01:00
worldofpeace
3103ba2ce8
Merge pull request #78927 from worldofpeace/blivet-mark-broken
...
nixosTests.blivet: remove
2020-01-30 19:34:00 -05:00
Luka Blaskovic
0fc6280715
llvm_4: remove
2020-01-30 18:35:31 -05:00
Luka Blaskovic
241236bc9e
mozart: build with llvmPackages_5
2020-01-30 18:35:30 -05:00
Luka Blaskovic
0eafee8328
llvm_39: remove
2020-01-30 18:35:30 -05:00
Luka Blaskovic
668b3e7de4
configuration-ghc-8.2.x: use default llvmPackages
2020-01-30 18:35:30 -05:00
Luka Blaskovic
3a12a7cde8
llvm_35: remove
2020-01-30 18:35:30 -05:00
Luka Blaskovic
ae2a5a91dd
pure: mark as broken
2020-01-30 18:35:30 -05:00
Luka Blaskovic
b57464448b
haskell.compiler.ghc863Binary: remove llvm from buildInput
...
Aarch64 binary is not used.
2020-01-30 18:35:29 -05:00
Luka Blaskovic
f6160bc6eb
haskell.compiler.ghc822Binary: use default llvm version on aarch64
2020-01-30 18:35:29 -05:00
Luka Blaskovic
4fa34c2283
llvm-general: remove
2020-01-30 18:35:29 -05:00
Luka Blaskovic
1ebc042878
dale: 20170519 -> 20181024
2020-01-30 18:35:29 -05:00
Frederik Rietdijk
5cc0468a20
Merge staging into staging-next
2020-01-31 00:16:31 +01:00
Alyssa Ross
f254fb9d89
python3Packages.mailmanclient.meta: HTTPS homepage
2020-01-30 23:14:45 +00:00
worldofpeace
85fcf3d7a8
nixosTests.blivet: remove
...
These have been broken since 2017-07-24, and the package
is hopelessly out of date as well.
2020-01-30 18:14:14 -05:00
Tim Steinbach
04e684d4e7
jenkins: 2.204.1 -> 2.204.2
2020-01-30 16:41:12 -05:00
Frederik Rietdijk
1a3a0e8181
python: pandas: 0.25.3 -> 1.0.0
2020-01-30 21:34:58 +01:00
Frederik Rietdijk
98efcba8df
python: numpy: 1.18.0 -> 1.18.1
2020-01-30 21:34:37 +01:00
Frederik Rietdijk
c67ea834c1
python: pytest: 5.3.2 -> 5.3.5
2020-01-30 21:28:57 +01:00
Michael Raskin
8b3f9cdb9b
Merge pull request #78146 from tviti/serapeum
...
lispPackages: add serapeum
2020-01-30 20:27:50 +00:00
Michael Raskin
12875b4269
Merge pull request #76905 from wahjava/update-to-sbcl-2.0.0
...
sbcl: 1.5.6 -> 2.0.1
2020-01-30 20:20:30 +00:00
Drew Risinger
74de16787f
pythonPackages.nest-asyncio: cleanup
2020-01-30 10:40:52 -08:00
Jan Tojnar
6d799c394c
speechd: clean up
2020-01-30 19:02:40 +01:00
Timo Kaufmann
ff478eacdb
Merge pull request #78866 from drewrisinger/dr-pr-sympy-bump
...
pythonPackages.sympy: 1.5 -> 1.5.1
2020-01-30 18:22:38 +01:00
Drew Risinger
5bf67da73d
pythonPackages.sympy: 1.5 -> 1.5.1
...
Fixes core regression (compare expressions to strings), and
lambdify using deprecated scipy functions vs numpy functions.
Changelog: https://github.com/sympy/sympy/wiki/Release-Notes-for-1.5.1
No known breaks. Sage should be fine @timokau
2020-01-30 10:36:18 -05:00
Jörg Thalheim
2dfc3e5254
build-rebar3: restore rebar3-nix-bootstrap path ( #78418 )
...
build-rebar3: restore rebar3-nix-bootstrap path
2020-01-30 14:21:29 +00:00
worldofpeace
7c75c12886
x264: fix on ARM
2020-01-30 09:01:25 -05:00
worldofpeace
caf40c4d9c
x264: 20190517-2245 -> 20191217-2245
2020-01-30 09:01:25 -05:00
Peter Hoeg
306e1f9121
Merge pull request #75545 from aca-labs/crystal
...
crystal: 0.31.1 -> 0.32.1
2020-01-30 21:21:43 +08:00
R. RyanTM
cef09ab0bb
supercollider: 3.10.3 -> 3.10.4
2020-01-30 11:03:45 +00:00
Maximilian Bosch
8539d5f48f
argbash: fix build
...
* Fixed sourceRoot as it's not possible to write in a different
store-path (`${src}` in this case).
* Patched shebangs to not use `/bin/bash`.
* Added `docutils` to nativeBuildInputs to fix build of the man-pages
See also https://hydra.nixos.org/build/110901127
2020-01-30 10:13:29 +01:00
Emery Hemingway
b4fd657c25
nim: 1.0.4 -> 1.0.6
2020-01-30 10:05:35 +01:00
R. RyanTM
15945d835a
rshell: 0.0.25 -> 0.0.26
2020-01-30 08:53:22 +00:00
R. RyanTM
aecdd873a7
python27Packages.ROPGadget: 5.9 -> 6.0
2020-01-30 09:43:53 +01:00
Farkas, Arnold
642134d5ad
pythonPackages.djangorestframework-simplejwt: init at 4.4.0
2020-01-29 22:52:33 -08:00
Farkas, Arnold
4d80baf9b8
pythonPackages.atlassian-python-api: init at 1.14.9
2020-01-29 22:51:55 -08:00
Niklas Hambüchen
01dfd41455
Merge pull request #78806 from nh2/issue-78805-glibc-musl-gcc-9-build-error
...
glibc: Fix build error due to warning with musl
2020-01-30 04:49:19 +01:00
Niklas Hambüchen
8ef2c51d06
glibc: Fix build error due to warning with musl. Fixes #78805
2020-01-30 04:20:52 +01:00
Mario Rodas
fc3e5df2a9
Merge pull request #77898 from r-ryantm/auto-update/quickder
...
quickder: 1.2-6 -> 1.3.0
2020-01-29 21:56:51 -05:00
Evan Stoll
9234e42951
cargo-geiger: 0.9.0 -> 0.9.1
...
- add cargo-lock.patch
- add update-cargo-lock.sh
- update src owner and homepage to reflect new main repository
2020-01-29 21:48:58 -05:00
Kim Burgess
f6ce7d6525
crystal: 0.32.0 -> 0.32.1
2020-01-30 12:46:47 +10:00
worldofpeace
baee4498c0
Merge pull request #78581 from r-ryantm/auto-update/gspell
...
gspell: 1.8.2 -> 1.8.3
2020-01-29 21:44:06 -05:00
Mario Rodas
98cc98efe1
Merge pull request #78651 from r-ryantm/auto-update/python2.7-statsmodels
...
python27Packages.statsmodels: 0.10.2 -> 0.11.0
2020-01-29 21:43:19 -05:00
Kim Burgess
cdfdb96375
crystal: 0.31.1 -> 0.32.0
2020-01-30 12:41:27 +10:00
Kim Burgess
a9d150f975
crystal: build 0.31 with 0.30 binary dist
2020-01-30 12:39:09 +10:00
Ryan Mulligan
bb29376ce6
Merge pull request #78520 from r-ryantm/auto-update/odpic
...
odpic: 3.2.1 -> 3.3.0
2020-01-29 18:16:26 -08:00
Eric Bailey
187eefb7d8
scc: 2.10.1 -> 2.11.0
2020-01-29 19:42:48 -06:00
Yorick van Pelt
e8889fe676
rebar3: restore bootstrapper attribute
...
partially reverts 8de4654d4b
2020-01-29 20:17:27 +01:00
Raphael Das Gupta
e8aa909fa7
gdal: 3.0.1 -> 3.0.3
...
GDAL/OGR 3.0.3 contains bugfixes to be shipped with QGIS 3.10.2
(https://github.com/NixOS/nixpkgs/issues/78755 )
See https://lists.osgeo.org/pipermail/qgis-developer/2020-January/060056.html
and https://blog.qgis.org/2020/01/24/public-service-announcement-update-to-the-latest-point-release-now/
2020-01-29 16:13:33 +01:00
Ryan Mulligan
938dbb26b8
Merge pull request #78526 from r-ryantm/auto-update/seasocks
...
seasocks: 1.4.2 -> 1.4.3
2020-01-29 05:35:41 -08:00
Dennis Gosnell
c2eb1e9179
Merge pull request #78540 from srghma/pretty-simple
...
pretty-simple: init at 3.2.1.0
2020-01-29 20:47:28 +09:00
Jörg Thalheim
f11e789ae9
python27Packages.pygdbmi: 0.9.0.0 -> 0.9.0.2 ( #78664 )
...
python27Packages.pygdbmi: 0.9.0.0 -> 0.9.0.2
2020-01-29 10:33:29 +00:00
Maximilian Bosch
c55809e256
Merge pull request #77985 from Ma27/drop-old-gcc
...
gcc: remove versions 4.9 and 5
2020-01-29 09:37:47 +01:00
R. RyanTM
315642ae70
epoxy: 1.5.3 -> 1.5.4
2020-01-29 09:02:32 +01:00