Commit Graph

49225 Commits

Author SHA1 Message Date
Michele Guerini Rocco
b2314a6d01
Merge pull request #79641 from rnhmjoj/creep
creep: split outputs in out and otb
2020-02-14 20:14:52 +01:00
Michele Guerini Rocco
c8d53312a5
Merge pull request #79756 from rnhmjoj/profont
profont: install otb variant
2020-02-14 19:49:31 +01:00
rnhmjoj
6979f761a5
profont: install otb variant 2020-02-14 19:06:50 +01:00
Arnold Farkas
7c92d539c1
pythonPackages.zstandard: init at 0.13.0 (#79215) 2020-02-14 18:35:36 +02:00
Mario Rodas
7696369bec
docker-slim: move expression to outside of build-support (#80078) 2020-02-14 09:42:18 +01:00
Michele Guerini Rocco
f8c3e15771
Merge pull request #75163 from rnhmjoj/gohu
gohufont: generate opentype files
2020-02-14 00:46:05 +01:00
Michele Guerini Rocco
5c86fd62fd
Merge pull request #79984 from dtzWill/feature/bdf2sfd
bdf2sfd: init at 1.1.0
2020-02-14 00:44:37 +01:00
worldofpeace
05f5786f0a
Merge pull request #80046 from bcdarwin/c3d-downgrade-gcc
c3d: unbreak via stdenv -> gcc8Stdenv
2020-02-13 17:48:23 -05:00
Ben Darwin
1112bcc75e c3d: unbreak via stdenv -> gcc8Stdenv 2020-02-13 17:45:18 -05:00
Shahrukh Khan
be1635933f
argocd: init at 1.4.2 (#79846) 2020-02-13 12:12:28 -08:00
Christoph Stich
e4f65629db julia_13: julia-1.3.1 version bump
Added all-packages.nix
2020-02-13 11:49:38 +00:00
Michele Guerini Rocco
21b31c4e51
Merge pull request #79998 from rnhmjoj/urxvt-fix
rxvt-unicode: fix typo in aliases.nix
2020-02-13 11:04:56 +01:00
Marek Mahut
87715811a2
Merge pull request #78389 from adisbladis/docbook-tools
docbookrx & kramdown-asciidoc: init
2020-02-13 10:03:02 +01:00
rnhmjoj
72bdf27771
rxvt-unicode: fix typo in aliases.nix 2020-02-13 09:30:22 +01:00
Nikolay Korotkiy
217b221eab
goldendict: enable on darwin 2020-02-13 10:09:36 +03:00
Will Dietz
18d9cc22c6
Merge pull request #77140 from dtzWill/feature/samurai
samurai: init at 1.0
2020-02-13 00:24:39 -06:00
Will Dietz
ff638c0afc
bdf2sfd: init at 1.1.0 2020-02-13 00:09:33 -06:00
Will Dietz
3991c60b37
go-license-detector: init at 3.0.2 2020-02-12 20:35:11 -06:00
Will Dietz
4aa1259e29
bibclean: init at 3.03 2020-02-12 19:55:14 -06:00
Will Dietz
93656d56d3
biblatex-check: init at 2019-11-09 2020-02-12 19:52:43 -06:00
Michael Weiss
fc3f421cff
Merge pull request #79867 from primeos/tdesktop
tdesktop: 1.9.9 -> 1.9.12
2020-02-12 20:08:23 +01:00
Drew Risinger
f87157e0d3 pythonPackages.marshmallow-polyfield: init at 5.7
This python package allows polymorphic data fields in marshmallow
serialization/deserialization schema.

This is a requirement for qiskit.
2020-02-12 08:40:31 -08:00
Jeff Labonte
b67006fae1 pythonPackages.digi-xbee: init at 1.3.0 2020-02-12 08:32:56 -08:00
Jeff Labonte
843a8481cd pythonPackages.srp: init at 1.0.15 2020-02-12 08:32:56 -08:00
Farkas, Arnold
ebf837e07f pythonPackages.sanic-auth: init at 0.2.0 2020-02-12 08:22:56 -08:00
Drew Risinger
0a5108d002 pythonPackages.dlx: init at 1.0.4
Python implementation of Donald Knuth's Dancing Links (exact cover)
algorithm.

Requirement of qiskit-aqua.
2020-02-12 07:24:51 -08:00
Alma Cemerlic
efc75b3eb3 pythonPackages.pysnow: init at 0.7.14 2020-02-12 06:49:28 -08:00
Frederik Rietdijk
424697d512 Merge master into staging-next 2020-02-12 09:55:31 +01:00
Gabriel Gonzalez
38f1d70c01 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.
2020-02-11 22:02:53 -08:00
Milan Pässler
d24c4038da netifd: init at unstable-2020-01-18 2020-02-12 02:12:05 +01:00
Milan Pässler
6ad91bb5ca uci: init at unstable-2020-01-27 2020-02-12 02:03:27 +01:00
Milan Pässler
020e93b394 ubus: init at unstable-2020-01-05 2020-02-12 02:03:27 +01:00
Michael Weiss
818628c53a
tl-expected: init at 2019-11-11
This version is 5 commits ahead of version 1.0.0 because we need at
least one patch [0] that prevents CMake from trying to use Git to fetch
the already fetched submodule...
Also some files have the wrong formatting (CRLF line endings) which
makes the patching really messy. At this point is seems therefore better
to use the master version instead (1.0.0 is pretty broken regarding
CMake).

[0]: 0ca73ee30e
2020-02-11 23:19:20 +01:00
Emily
7f1ab0505c merriweather-sans: init at 1.008 2020-02-11 20:40:12 +00:00
Emily
21ea3ddf60 merriweather: init at 2.005 2020-02-11 20:40:12 +00:00
Daniel Schaefer
8cc8b3b235
Merge pull request #73777 from doronbehar/package-brotab
brotab: init at 0.0.5
2020-02-11 20:49:06 +01:00
Daniel Schaefer
9b2d529062
Merge pull request #79671 from rnhmjoj/spleen
spleen: install otf font
2020-02-11 20:37:32 +01:00
Benjamin Saunders
d73c83fca5 vulkan-validation-layers: 1.1.114.0 -> 1.2.131.2 2020-02-11 19:11:32 +01:00
Benjamin Saunders
533e7c2296 glslang: 7.11.3214 -> 8.13.3559 2020-02-11 19:11:32 +01:00
Milan Pässler
7fbc860d72 tipp10: init at 3.1.0 2020-02-11 17:36:22 +01:00
lewo
2a773b1506
Merge pull request #79325 from eonpatapon/safe
safe: init at 1.5.1
2020-02-11 16:27:00 +01:00
Maximilian Bosch
3d1007716c
pinentry_qt5: alias to pinentry-qt
Attribute was removed in a4916fdea5 which
will land in 20.03, but breaks evaluation for everyone using
pinentry_qt5 on NixOS 19.09 when updating.
2020-02-11 16:10:01 +01:00
Jean-Philippe Braun
dd759b3b67 safe: init at 1.5.1 2020-02-11 16:09:54 +01:00
Stig Palmquist
9729f2be95
perlPackages.OpenAPIClient: init at 0.24 2020-02-11 15:08:18 +01:00
Frederik Rietdijk
1a6c3cb06b Merge staging into staging-next 2020-02-11 07:59:53 +01:00
Michele Guerini Rocco
4d6e3bf127
Merge pull request #79247 from tomberek/tom/ngt
ngt: init at 1.8.4
2020-02-11 07:49:36 +01:00
Ben Darwin
c81a2e6a1e ocamlPackages.npy: init at unstable-2019-04-02 2020-02-11 07:33:42 +01:00
Martin Milata
b86f4d52cf gunicorn: add 19.x branch for python2.7 support
The nixos/moinmoin module uses gunicorn, however the 20.0 version
dropped python2 support which broke the module as there's no python3
port planned for moinmoin: http://moinmo.in/Python3
2020-02-10 19:26:21 -08:00
José Miguel
524af32c15 pythonPackages.wordcloud: init at 1.6.0 2020-02-10 19:23:45 -08:00
Jan Tojnar
c3a68446a8
Merge pull request #76988 from FRidh/duplicity
duplicity: 0.7.19 -> 0.8.10, use python3
2020-02-11 02:44:42 +01:00
Thomas Bereknyei
6c3c1f0c0a ngt: init at 1.8.4 2020-02-10 19:32:42 -05:00
Aluísio Augusto Silva Gonçalves
9a0e92512c r128gain: init at 0.9.3 2020-02-10 21:05:43 +01:00
Christian Lütke-Stetzkamp
df7ee19182 cvsq: init at 1.10 2020-02-10 20:58:06 +01:00
Anders Kaseorg
1a32e383e6 or-tools: 7.3 -> 7.5
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2020-02-10 20:40:12 +01:00
Stig Palmquist
e66cbc5f65 rakudo: 2017.01 -> 2020.01
dependencies:
- moarvm: init at 2020.01.1
- nqp: init at 2020.01
- zef: init 0.8.2

Replaced the rakudo-star distribution with packages for raku, moarvm, nqp and
zef.
2020-02-10 20:34:04 +01:00
Robert Scott
8817036a31 pythonPackages.capstone: 3.0.5.post1 -> 4.0.1, redesign as wrapper package around main capstone package
this allows us to keep the two packages in sync and handle overrides more
flexibly
2020-02-10 20:29:01 +01:00
Ben Darwin
7059f44440 python3Packages.tensorly: init at 0.4.5 2020-02-10 20:21:28 +01:00
Bart Brouns
bd90b5a5cf faust: 2.5.23 -> 2.20.2 2020-02-10 20:12:05 +01:00
Eric Bailey
d723b91223 lfe: 1.2.1 -> 1.3
Add patches to the builder expression, and add those necessary for 1.3.
2020-02-10 20:03:47 +01:00
Eric Bailey
82e007f80f lfe: pin 1.2.1 to R19 2020-02-10 20:03:47 +01:00
Michele Guerini Rocco
5f55ef9e79
Merge pull request #79502 from expipiplus1/opencorsairlink
opencorsairlink: init at 2019-12-23
2020-02-10 19:58:23 +01:00
Ben Darwin
39f0e3b32b minc_tools: enable building conversion tools 2020-02-10 19:53:25 +01:00
zimbatm
bcdc90a3a7 ruby_2_4: remove
According to https://endoflife.software/programming-languages/server-side-scripting/ruby
ruby 2.4 will go end-of-life in march, where the new release of nixpkgs
will be cut. We won't be able to support it for security updates.

Remove all references to ruby_2_4 and add ruby_2_7 instead where
missing.

Mark packages that depend on ruby 2.4 as broken:
* chefdk
* sonic-pi
2020-02-10 13:23:35 -05:00
Frederik Rietdijk
b5126937b4
duplicity: 0.7.19 -> 0.8.10
Update, port to Python 3 and clean up.

Co-Authored-By: Jan Tojnar <jtojnar@gmail.com>
Co-Authored-By: Frederik Rietdijk <fridh@fridh.nl>
2020-02-10 19:01:17 +01:00
worldofpeace
09f7e376c2
Merge pull request #79416 from jtojnar/flatpak-1.6
flatpak: 1.4.2 → 1.6.1
2020-02-10 12:57:19 -05:00
Jan Tojnar
102fa4aaec malcontent: init at 0.4.0 2020-02-10 12:55:24 -05:00
Jan Tojnar
ea06e0055e glib-testing: init at 0.1.0 2020-02-10 12:55:24 -05:00
Jan Tojnar
3c65622fc5 librepo: 1.9.2 → 1.11.2
* Update
    Changes: https://github.com/rpm-software-management/librepo/compare/1.9.2...1.11.2
* Split into multiple outputs
* Default to Python 3 like upstream does
2020-02-10 12:55:23 -05:00
Jan Tojnar
67225411d4 zchunk: init at 1.1.5
required by rpm-ostree
2020-02-10 12:55:23 -05:00
Jan Tojnar
a07e870d85 libportal: init at 0.3 2020-02-10 12:55:21 -05:00
Frederik Rietdijk
079622ef2d
Merge pull request #79628 from NixOS/staging-next
Staging next
2020-02-10 17:53:25 +01:00
Michele Guerini Rocco
565724c775
Merge pull request #77347 from rnhmjoj/urxvt
rxvt-unicode: rewrite plugin system
2020-02-10 17:21:59 +01:00
Eelco Dolstra
0e6ceb8758
Merge pull request #68897 from edolstra/master
Flake support
2020-02-10 16:44:54 +01:00
Eelco Dolstra
64e5f4d53b Fix 'nix flake check' 2020-02-10 16:26:33 +01:00
Vladimír Čunát
221274e155
rtptools: fix a typo
/cc PR #79028.  Whitespace change: seems more common this way.
Normal eval didn't notice but it came out in the metrics job:
https://hydra.nixos.org/build/112189807
2020-02-10 13:11:22 +01:00
Frederik Rietdijk
ec3edaf7b5 Merge master into staging-next 2020-02-10 12:55:47 +01:00
rnhmjoj
c5a0d66eb7
gohufont: split outputs into out and otb 2020-02-10 12:01:28 +01:00
Christian Kauhaus
b2abf36467 Merge pull request #72108 from jD91mZM2/scaff
scaff: init at 0.1.1
2020-02-10 10:55:23 +01:00
Daniel Schaefer
f10e240b86 Merge pull request #72886 from JohnAZoidberg/manim
manim: init at 0.1.10
2020-02-10 10:09:22 +01:00
Florian Klink
0e9d542fe7
Merge pull request #79468 from flokli/bluespec-bsc
bluespec: init at unstable-2020.02.07
2020-02-10 03:35:31 +01:00
worldofpeace
aa4ba502d6
Merge pull request #79335 from flokli/deprecate-perl-vm-tests
nixos/testing: add deprecation notice for Perl VM tests
2020-02-09 21:08:11 -05:00
rnhmjoj
8ada475450
spleen: install otf font 2020-02-10 01:36:07 +01:00
Silvan Mosberger
637bb9fa98
Merge pull request #72060 from lopsided98/sanoid-init
sanoid: add package, NixOS module and test
2020-02-10 01:28:41 +01:00
Silvan Mosberger
b9d7f1fe24 Merge pull request #65397 from mmilata/sympa
sympa: init at 6.2.52 + NixOS module
2020-02-10 01:23:45 +01:00
rnhmjoj
406b96fa7d
envypn-font: split outputs in out and otb 2020-02-10 00:57:53 +01:00
Florian Klink
c9ea6afe06 bluespec: init at unstable-2020.02.09 2020-02-10 00:44:22 +01:00
rnhmjoj
7f7c94497a
dina,dina-pcf: unify packages 2020-02-10 00:28:56 +01:00
worldofpeace
1b2b9dac5c
Merge pull request #79115 from flokli/simplify-firefox
firefoxPackages.*: remove unsupported packages, clean up derivation
2020-02-09 17:57:55 -05:00
worldofpeace
d3efeb79b7 nixosTest: update to make-test-python.nix
This still referred to the legacy make-test.nix (Perl)
2020-02-09 23:53:58 +01:00
Maximilian Bosch
c2f2366f5c Merge pull request #79485 from Ma27/grocy
grocy: init at 2.6.0
2020-02-09 23:11:46 +01:00
Florian Klink
9bf7d51047 conkeror: remove package
Conkeror doesn't work with any secure firefox release.
Please move to some of the alternatives suggested at
http://conkeror.org/Alternatives.
2020-02-09 22:48:27 +01:00
Maximilian Bosch
dd6a291e9f
gcc-snapshot: remove
Package is marked as broken for >2 years and used a fairly old
snapshot from the gcc7-branch, so I fairly doubt that this is
somewhere used (and is also pretty misleading as you don't expect a
random snapshot from gcc7 at `pkgs.gcc-snapshot`).
2020-02-09 22:46:29 +01:00
Florian Klink
84af9839e0 firefoxPackages.*, firefox-esr*, icecat: add aliases 2020-02-09 22:33:33 +01:00
Lancelot SIX
d969e70230 octaveHg: drop
This package is broken and unmaintained (no updates since 2017) and lags
behind octave.
2020-02-09 19:24:18 +01:00
rnhmjoj
dcc8e45dab
creep: split outputs in out and otb 2020-02-09 19:05:06 +01:00
gnidorah
2414e8d51d openmw-tes3mp: fix build 2020-02-09 17:25:52 +01:00
Farkas, Arnold
500a8ffd96 pythonPackages.flower: init at 0.9.3 2020-02-09 17:12:01 +01:00
Farkas, Arnold
a8f3903ba5 pythonPackages.nbconflux: init at 0.7.0 2020-02-09 17:08:11 +01:00
Florian
50ad81d76b lexicon: init at 3.3.17 2020-02-09 16:57:57 +01:00
Florian
a614706219 transip: init at 2.0.0 2020-02-09 16:57:57 +01:00
Florian
1c94a83a5f localzone: init at 0.9.5 2020-02-09 16:57:57 +01:00
Florian
2228e3ad12 softlayer-python: init at 5.8.4 2020-02-09 16:57:57 +01:00
Florian
9006edb2a9 pynamecheap: init at 0.0.3 2020-02-09 16:57:57 +01:00
Frederik Rietdijk
3846896084 Merge pull request #79293 from NixOS/staging-next
Staging next (with glibc 2.30)
2020-02-09 16:40:16 +01:00
Frederik Rietdijk
cffec212dc Merge staging into staging-next 2020-02-09 16:38:32 +01:00
Linus Heckemann
dcd11c9496
Merge pull request #79028 from lheckemann/rtptools
rtptools: init at 1.22
2020-02-09 13:43:30 +01:00
Joachim Schiele
f69f31a11b
hll2340dw brother: added driver to cups (#78560) 2020-02-09 12:14:55 +01:00
Frederik Rietdijk
531a48ebdb Merge master into staging-next 2020-02-09 11:00:29 +01:00
Daniel Wheeler
74cb7cd5c0 pythonPackages.sfepy: init at 2019.2 2020-02-09 10:30:30 +01:00
dawidsowa
2eeda84091 pythonPackages.iapws: init at 1.4 2020-02-09 10:28:27 +01:00
talkara
e7d80e3e15 pythonPackages.robotframework-databaselibrary: init at 1.2.4 (#67339)
* pythonPackages.robotframework-databaselibrary: init at 1.2.4

* maintainers: add talkara

* pythonPackages.robotframework-databaselibrary: add meta.maintainers: talkara
2020-02-09 10:27:45 +01:00
ivegotasthma
9c8716af68 pythonPackages.django-anymail: init at 6.1.0 2020-02-09 10:26:44 +01:00
Lucio Delelis
d1508cb819 pythonPackages.pyfcm: init at 1.4.7 (#67321)
* pythonPackages.pyfcm: init at 1.4.7

* pythonPackages.pyfcm: build from github, rather than Pypi

* pythonPackages.pyfcm: adds ldelelis as package maintainer
2020-02-09 10:25:07 +01:00
Ivan Solyankin
f4f450f3a5 pythonPackages.furl: init at 2.0.0 2020-02-09 10:23:43 +01:00
Ivan Solyankin
018d0459f8 pythonPackages.orderedmultidict: init at 1.0.1 2020-02-09 10:23:43 +01:00
Sébastien Maret
4ea8f051ac galario: init at 1.2.1
Co-Authored-By: Daniel Schaefer <git@danielschaefer.me>
2020-02-09 10:21:30 +01:00
Taito Horiuchi
ca44e9514c pythonPackages.z3c_checkversions: init at 1.1
pythonPackages.z3c-checkversions: normalize attribute name and pname
z3c_checkversions -> z3c-checkversions

pythonPackages.z3c-checkversions: init at 1.1
2020-02-09 10:18:30 +01:00
Mario Rodas
bc2336898f
broot: 0.12.2 -> 0.13.1 (#79565)
Changelog:
  - https://github.com/Canop/broot/releases/tag/v0.13.0
  - https://github.com/Canop/broot/releases/tag/v0.13.1
2020-02-09 10:10:57 +01:00
Josef Kemetmüller
1a6e93f0b2 pythonPackages.mayavi: init at 4.7.0 2020-02-09 10:08:43 +01:00
Josef Kemetmüller
4fb342d6e4 pythonPackages.vtk: init at 7.0.0 2020-02-09 10:08:43 +01:00
Josef Kemetmüller
f126f2c9e3 pythonPackages.envisage: init at 4.7.2 2020-02-09 10:08:43 +01:00
Josef Kemetmüller
7800b2f71a pythonPackages.apptools: init at 4.4.0 2020-02-09 10:08:43 +01:00
Josef Kemetmüller
4da1a74f25 pythonPackages.traitsui: init at 6.0.0 2020-02-09 10:08:43 +01:00
Josef Kemetmüller
8a6415f749 pythonPackages.pyface: init at 6.1.1 2020-02-09 10:08:43 +01:00
Frederik Rietdijk
8847d57763 Merge staging-next into staging 2020-02-09 09:18:17 +01:00
Bastian Köcher
60a479d91d rustc: 1.40.0 -> 1.41.0 2020-02-09 09:20:07 +01:00
Alyssa Ross
1f95695e5d rubyPackages: update 2020-02-09 09:18:47 +01:00
Alyssa Ross
659579c6af rubyPackages: alias to rubyPackages_2_6 2020-02-09 09:18:47 +01:00
Frederik Rietdijk
03755ed59a Merge master into staging-next 2020-02-09 09:17:51 +01:00
Lancelot SIX
2711c7477d pythonPackages.django: django_1_11 -> django_lts 2020-02-09 09:17:31 +01:00
Lancelot SIX
17a0ec03cc pythonPackages.django_lts: init at django_2_2 2020-02-09 09:17:31 +01:00
pasqui23
f9735f05ac
qnotero: 1.0.0 -> 2.1.1 (#74560)
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
2020-02-09 01:40:09 -05:00
Emily
b514cc33aa python3Packages.nmigen-soc: init at unstable-2020-02-08 2020-02-08 23:00:07 -06:00
worldofpeace
4ced5611db
Merge pull request #75670 from mkg20001/pkg/bless
bless: init at 0.6.2
2020-02-08 21:58:35 -05:00
Thomas Tuegel
f84107c857
Merge pull request #79112 from dtzWill/update/kde-applications-19.20.1
kdeApplications: 19.08.3 -> 19.12.1, new fetch base URL?
2020-02-08 06:24:05 -06:00
Joe Hermaszewski
e978d20fd2 opencorsairlink: init at 2019-12-23 2020-02-08 11:57:49 +08:00
Maximilian Bosch
3d051f49ba
grocy: init at 2.6.0 2020-02-07 23:31:04 +01:00
Richard Marko
e39d7fab27 sympa: init at 6.2.52 2020-02-07 22:54:23 +01:00
Richard Marko
80098e9a71 perlPackages.HTMLStripScripts: init at 1.06 2020-02-07 22:19:30 +01:00
Richard Marko
02493a6e65 perlPackages.HTMLStripScriptsParser: init at 1.03 2020-02-07 22:19:29 +01:00
Richard Marko
3652efdb00 perlPackages.MIMELiteHTML: init at 1.24 2020-02-07 22:19:29 +01:00
Daiderd Jordan
408f36923d
mpv: call with frameworks
Referencing darwin.* directly makes overriding dependencies very
awkward.
2020-02-07 22:09:23 +01:00
Frederik Rietdijk
30f0909e3a Merge master into staging-next 2020-02-07 19:27:52 +01:00
Aaron Andersen
4506f4ae47
Merge pull request #79464 from aanderse/perlPackages.NetSNPP
perlPackages.NetSNPP: init at 1.17
2020-02-07 11:25:49 -05:00
Aaron Andersen
7412a56e31 perlPackages.NetSNPP: init at 1.17 2020-02-07 11:01:13 -05:00
rnhmjoj
3f29e19a48
gohufont: fix for cross compilation 2020-02-07 10:53:23 +01:00
rnhmjoj
68464b6440
gohufont: generate opentype files 2020-02-07 09:34:51 +01:00
Frederik Rietdijk
38cf6eac19 Merge master into staging-next 2020-02-06 19:43:36 +01:00
Rakesh Gupta
21b11bfc0e mapproxy: init at 1.12.0 2020-02-06 05:46:32 -08:00
Nikolay Korotkiy
604762da4d pythonPackages.pyosmium: init at 2.15.3 2020-02-06 04:22:27 -08:00
Frederik Rietdijk
e36dbf30b0 python3Packages.nbformat: 4.4.0 -> 5.0.4 2020-02-06 10:25:19 +01:00
Eelco Dolstra
5548397488 make-tarball.nix: Derive version from lastModified instead of revCount
GitHub flakes don't provide revCount.
2020-02-05 23:14:32 +01:00
Danylo Hlynskyi
437e1f69be
bash-my-aws: init at 20200111 (#76793)
* bash-my-aws: init at 20191231

Create bma-init

* Update
2020-02-05 22:37:52 +02:00
Frederik Rietdijk
292fd97f67 Merge staging-next into staging 2020-02-05 20:48:28 +01:00
Frederik Rietdijk
419bc0a4cd Revert "Revert "Merge master into staging-next""
In 87a19e9048 I merged staging-next into master using the GitHub gui as intended.
In ac241fb7a5 I merged master into staging-next for the next staging cycle, however, I accidentally pushed it to master.
Thinking this may cause trouble, I reverted it in 0be87c7979. This was however wrong, as it "removed" master.

This reverts commit 0be87c7979.
2020-02-05 19:41:25 +01:00
Frederik Rietdijk
0be87c7979 Revert "Merge master into staging-next"
I merged master into staging-next but accidentally pushed it to master.
This should get us back to 87a19e9048.

This reverts commit ac241fb7a5, reversing
changes made to 76a439239e.
2020-02-05 19:18:35 +01:00
Frederik Rietdijk
87a19e9048
Merge pull request #79119 from NixOS/staging-next
Staging next
2020-02-05 19:09:27 +01:00
jD91mZM2
6293f00701
scaff: init at 0.1.1 2020-02-05 18:05:25 +01:00
worldofpeace
5e329ff83c
Merge pull request #79192 from dtzWill/feature/electron-refactor-and-7
electron*: refactor 4+ to common expression, add 7 and 8, updates
2020-02-05 11:03:19 -05:00
Will Dietz
ed8c6393d0 electron_8: init at 8.0.0 2020-02-05 10:21:06 -05:00
Will Dietz
8e8285d9ca electron*: refactor 4+ to common expression, add 7, updates
* print-hashes.nix uses upstream-provided SHA256SUMS file
* electron_4: 4.2.8 -> 4.2.12
* electron_5: 5.0.8 -> 5.0.13
* electron_6: 6.0.1 -> 6.1.7
* electron_7:: init at 7.1.10

FWIW:
electron_4 previously did not include at-spi2-core, only at-spi2-atk.
Both are now included, matching other versions for a slightly simpler
expression.
2020-02-05 10:21:06 -05:00
Vladimír Čunát
48a997cd76
Merge #66528: glibc: 2.27 -> 2.30 (into staging)
Includes update of stdenv bootstap tools (for three main platforms)
and many package fixes with new glibc.
2020-02-05 13:41:09 +01:00
Vladimír Čunát
22284b07ef
gcc: disable LTO on i686
as a workaround to fix build after updating stdenv bootstrap
(in the followup commit).  Interested parties can improve this later.
2020-02-05 13:02:57 +01:00
Frederik Rietdijk
c55efd568a Merge staging-next into staging 2020-02-05 10:33:50 +01:00
Frederik Rietdijk
76a439239e Merge master into staging-next 2020-02-05 10:28:52 +01:00
Maximilian Bosch
e94e5cd03f
Merge pull request #78647 from MetaDark/protontricks
protontricks: 1.3.1 -> 1.4
2020-02-05 09:30:18 +01:00
Florian Klink
cbbb81c830
Merge pull request #79135 from dtzWill/fix/moby-now-linuxkit
moby: remove, merged into linuxkit in 2018
2020-02-05 01:09:15 +01:00
Will Dietz
3e83806771
moby: remove, merged into linuxkit in 2018
Don't alias linuxkit, as linuxkit is not a drop-in replacement.
Instead, throw with an explanation.
(thanks reviewers!)
2020-02-04 17:51:03 -06:00
Maximilian Bosch
f28acbdd33
Merge pull request #79221 from Ma27/bump-oracle-sqldeveloper
sqldeveloper: {17.4.1.054.0712,18.2.0.183.1748} -> 19.4.0.354.1759
2020-02-04 22:25:44 +01:00
Profpatsch
84630a1d90
Merge pull request #68469 from uri-canva/bazel-deps
bazel-deps: remove
2020-02-04 21:14:44 +01:00
Ben Darwin
00cd1d0f21 ocamlPackages.parmap: init at 1.1 2020-02-04 17:49:45 +01:00
Michael Raskin
1f0b4b19aa sbcl: reinstate 2.0.0; add sbcl_2_0_1 for 2.0.1
2.0.1 is too fresh for current Quicklisp (for example, CFFI fails)
2020-02-04 17:06:54 +01:00
worldofpeace
49fb456ece
Merge pull request #75885 from voanhduy1512/add_asus_wmi_sensors
asus-wmi-sensors: init at 0.0.1
2020-02-04 10:53:37 -05:00
Michael Weiss
eacc771f72
gitRepo: Switch to Python 3 2020-02-04 14:45:57 +01:00
Michael Weiss
0de211d08d
Merge pull request #79212 from primeos/cleanup
dmenu2, tdesktopPackages: Remove the deprecation messages
2020-02-04 14:06:48 +01:00
Maximilian Bosch
294f667121
sqldeveloper: {17.4.1.054.0712,18.2.0.183.1748} -> 19.4.0.354.1759
There are no new releases of sqldeveloper v17/v18 and I don't think that
we should keep obviously unmaintained software that interacts with
database systems.

I removed `sqldeveloper_18` and `pkgs.sqldeveloper` now points to
version 19.4. Unfortunately I had to drop darwin support as JavaFX is
required for 19.4 which is part of the `oraclejdk` which isn't packaged
for darwin yet.

For further information please refer to the release notes:

https://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/sqldev-relnotes-194-5908846.html
2020-02-04 13:51:52 +01:00
Marek Mahut
65a1a68614 dat: move from all-packages to aliases 2020-02-04 12:52:54 +01:00
Michael Weiss
0d1eeb7dbb
dmenu2, tdesktopPackages: Remove the deprecation messages
These aren't required anymore by now :)
2020-02-04 12:32:50 +01:00
Kristian Brucaj
87adf9a702 Removed unexpected package from all-packages.nix 2020-02-03 23:13:50 -05:00
volth
0cfef7224f perlPackages: fix build 2020-02-04 03:43:07 +00:00
Vo Anh Duy
a1cc279630 asus-wmi-sensors: init at 0.0.1 2020-02-04 11:18:35 +08:00
volth
17d25f3714 [cpan2nix] perlPackages.Catmandu: 1.2002 -> 1.2011 2020-02-04 03:04:08 +00:00
volth
ecc459f050 [cpan2nix] perlPackages.MooseXAttributeHelpers: 0.23 -> 0.25 2020-02-04 03:04:08 +00:00
volth
bd3de673ca [cpan2nix] perlPackages.MojoSQLite: 3.002 -> 3.003 2020-02-04 03:04:08 +00:00
volth
42fda9eb2b [cpan2nix] perlPackages.XMLLibXML: 2.0134 -> 2.0202
dependencies:
perlPackages.AlienLibxml2: init at 0.12
perlPackages.MojoDOM58: init at 2.000
2020-02-04 03:04:08 +00:00
volth
01852d5b8b [cpan2nix] perlPackages.GetoptLongDescriptive: 0.102 -> 0.104 2020-02-04 03:04:07 +00:00
Uri Baghin
10d1a04b02 bazel-deps: remove 2020-02-04 12:35:47 +11:00
Will Dietz
6f60621c0c
kcontacts: kdeApplications -> kdeFrameworks 2020-02-03 18:08:59 -06:00
Will Dietz
ccdfbcd63c
Merge pull request #78661 from dtzWill/fix/matrique-alias-for-spectral
matrique: move to aliases.nix, not primary attribute name
2020-02-03 17:39:27 -06:00
Will Dietz
d18b1ee998
Merge pull request #78155 from dtzWill/update/zanshin-0.5.71
zanshin: 2019-07-28 -> 0.5.71
2020-02-03 17:38:20 -06:00
Will Dietz
67ab3bab81
matrique: move to aliases.nix, not primary attribute name
Noticed when searching for the spectral package:

https://nixos.org/nixos/packages.html?channel=nixos-unstable&query=%5Espectral

.. which presently indicates `matrique` is the attribute name.

(matrique became spectral at some point in 2018)
2020-02-03 17:37:25 -06:00
Timo Kaufmann
c636a45e67
Merge pull request #78871 from drewrisinger/dr-pr-libcint
libcint: init at 3.0.19
2020-02-04 00:00:10 +01:00
Drew Risinger
3e5789a223 libcint: init at 3.0.19
C library of general GTO integrals for quantum chemistry.

Requirement for pyscf, which is a requirement for qiskit-aqua.
2020-02-03 17:11:21 -05:00
Lancelot SIX
b07817fbb6
Merge pull request #79161 from bcdarwin/octave-disable-qscintilla
octave: build without qscintilla by default
2020-02-03 20:10:32 +01:00
Will Dietz
2158ec610d
elementary-planner: init at 2.1.1 (#78859)
* elementary-planner: init at 2.1.1

* elementary-planner: change pname to match attribute/etc

Upstream doesn't use the name "elementary-planner",
but rename in our packaging and be consistent about it
to avoid confusion with gnome's planner.

* elementary-planner: fetchpatch version fix, dep fixups, maintainers

Per reviewer feedback, thanks all! <3
2020-02-03 13:14:53 -05:00
Ben Darwin
3ac3677876 octave: build without qscintilla by default
- qscintilla is used for IDE features in the GUI, which is not built since qt support isn't enabled
- this removes qt from the Octave closure
2020-02-03 10:29:17 -05:00
Peter Hoeg
f8c5513ce1
Merge pull request #78734 from Mic92/appdaemon
appdaemon: 3.0.5 -> 4.0.1
2020-02-03 22:00:38 +08:00
Marek Mahut
31bcf8d363
Merge pull request #78749 from mmahut/qesteidutil
qesteidutil: remove
2020-02-03 13:54:55 +01:00
Maximilian Bosch
5895af59b6
Merge pull request #79117 from dtzWill/update/ktimetracker-5.0.1
ktimetracker: init at 5.0.1
2020-02-03 13:40:52 +01:00
Marek Mahut
58c0bd3076 qesteidutil: remove 2020-02-03 11:17:36 +01:00
Daiderd Jordan
105ecf1e01
prometheus-xmpp-alerts: fix evaluation
https://hydra.nixos.org/build/111462401

callPackages adds override functions to each attribute rather than just
the top-level drv resulting drv.metadata that includes a function.

    derivation 'prometheus-xmpp-alerts-0.4.2' has invalid meta attribute 'overrideDerivation'
2020-02-03 08:24:31 +01:00
Linus Heckemann
2df6898bb5
Merge pull request #79020 from helsinki-systems/wimboot-init
wimboot: Init at 2.6.0
2020-02-03 08:11:31 +01:00
worldofpeace
74e4cb7ea4
Merge pull request #78543 from Atemu/dnscrypt-proxy2-service
nixos/dnscrypt-proxy2: init
2020-02-02 23:02:06 -05:00
worldofpeace
39e893c468 dnscrypt-proxy: remove 2020-02-02 21:51:19 -05:00
Kristian Brucaj
5ece342d0f fusee-interfacee-tk: init at V1.0.0
all-packages: Add fusee-interfacee-tk
2020-02-02 19:43:52 -05:00
Florian Klink
a1bcf2c90e
Merge pull request #77426 from lheckemann/remove-otter
otter-browser: remove
2020-02-02 22:29:35 +01:00
Linus Heckemann
c99e248f3c otter-browser: remove
I have no interest in maintaining this anymore and it has no other maintainers.
2020-02-02 22:28:20 +01:00
Will Dietz
6e6a7d61ee
ktimetracker: init at 5.0.1 2020-02-02 14:57:32 -06:00
Markus Schneider
b48e761b2c
mons: init at 20200107 (#79000)
Co-authored-by: mschneiderwng <mschneider@linkdot.org>
2020-02-02 21:37:57 +01:00
volth
a8cbcedc12 [cpan2nix] perlPackages.Appperlbrew: 0.87 -> 0.88 2020-02-02 19:33:09 +00:00
volth
024eb1ec49 [cpan2nix] perlPackages.CGICompile: 0.23 -> 0.24 2020-02-02 19:33:09 +00:00
volth
0d5b30954a [cpan2nix] perlPackages.JSONValidator: 3.17 -> 3.18 2020-02-02 19:33:09 +00:00
volth
f10092596e [cpan2nix] perlPackages.AlienBuild: 1.96 -> 1.98 2020-02-02 19:33:08 +00:00
volth
4e88446638 [cpan2nix] perlPackages.Sereal: 4.007 -> 4.008 2020-02-02 19:33:08 +00:00
volth
07d15f3175 [cpan2nix] perlPackages.SerealEncoder: 4.007 -> 4.008 2020-02-02 19:33:08 +00:00
volth
7800c38aa4 [cpan2nix] perlPackages.SerealDecoder: 4.007 -> 4.008 2020-02-02 19:33:08 +00:00
volth
e439f1350b [cpan2nix] perlPackages.Test2Suite: 0.000127 -> 0.000128 2020-02-02 19:33:08 +00:00
volth
c9dbc24a18 [cpan2nix] perlPackages.TypeTiny: 1.008003 -> 1.008005 2020-02-02 19:33:08 +00:00
volth
88080912cd [cpan2nix] perlPackages.CDB_File: 1.01 -> 1.02 2020-02-02 19:13:00 +00:00
volth
3f4fdf84e2 [cpan2nix] perlPackages.PathTiny: 0.110 -> 0.112 2020-02-02 19:12:21 +00:00
volth
24b765cfeb [cpan2nix] perlPackages.ModuleBuild: 0.4229 -> 0.4231 2020-02-02 19:12:11 +00:00
volth
e1bee5fe67 [cpan2nix] perlPackages.BCOW: 0.001 -> 0.002 2020-02-02 19:11:26 +00:00
volth
c444a455a3 [cpan2nix] perlPackages.XMLLibXSLT: 1.97 -> 1.99 2020-02-02 19:07:11 +00:00
volth
331185ccd0 perlPackages.TimeDate: remote needless patch 2020-02-02 19:07:06 +00:00
volth
11860881c2 [cpan2nix] perlPackages.CatalystRuntime: 5.90124 -> 5.90126 2020-02-02 19:06:39 +00:00
volth
81283d17f3 [cpan2nix] perlPackages.TaskFreecellSolverTesting: cleanup 2020-02-02 19:06:39 +00:00
volth
14be4c7f92 [cpan2nix] perlPackages.PodElemental: 0.103004 -> 0.103005 2020-02-02 19:06:39 +00:00
volth
9035530c13 [cpan2nix] perlPackages.Swim: cleanup 2020-02-02 19:06:39 +00:00
volth
9927dad0a8 [cpan2nix] perlPackages.PerlCritic: 1.136 -> 1.138 2020-02-02 19:06:39 +00:00
volth
b529c0257b [cpan2nix] perlPackages.InlineC: cleanup 2020-02-02 19:06:39 +00:00
volth
7ca8787cac [cpan2nix] perlPackages.CGICompile: 0.22 -> 0.23 2020-02-02 19:06:39 +00:00
volth
7ca47f270f [cpan2nix] perlPackages.MojoliciousPluginOpenAPI: 2.20 -> 2.21 2020-02-02 19:06:38 +00:00
volth
f6f63418d1 [cpan2nix] perlPackages.PPIxRegexp: 0.067 -> 0.068 2020-02-02 19:06:38 +00:00
volth
7d53c34587 [cpan2nix] perlPackages.DataPerl: 0.002009 -> 0.002011 2020-02-02 19:06:38 +00:00
volth
1f80dc714a [cpan2nix] perlPackages.AlienBuild: 1.94 -> 1.96 2020-02-02 19:06:38 +00:00
volth
71673db6d5 [cpan2nix] perlPackages.DirManifest: 0.6.0 -> 0.6.1 2020-02-02 19:06:38 +00:00
volth
9e0b3b8cca [cpan2nix] perlPackages.Clipboard: 0.21 -> 0.22 2020-02-02 19:06:38 +00:00
volth
3aa96bd4e1 [cpan2nix] perlPackages.Pegex: 0.72 -> 0.74 2020-02-02 19:06:38 +00:00
volth
fdb74f8fa3 [cpan2nix] perlPackages.FFICheckLib: 0.25 -> 0.26 2020-02-02 19:06:38 +00:00
volth
c37d9bfeed [cpan2nix] perlPackages.CPANPLUS: 0.9904 -> 0.9906 2020-02-02 19:06:37 +00:00
volth
9465e7c149 [cpan2nix] perlPackages.YAML: 1.29 -> 1.30 2020-02-02 19:06:37 +00:00
volth
14663f565e [cpan2nix] perlPackages.TestMockObject: 1.20191002 -> 1.20200122 2020-02-02 19:06:37 +00:00
volth
b1d381fec9 [cpan2nix] perlPackages.XXX: 0.33 -> 0.35
dependencies:
perlPackages.YAMLPP: init at 0.018
2020-02-02 19:06:37 +00:00
volth
6a6b40c727 [cpan2nix] perlPackages.XMLLibXMLSimple: 0.99 -> 1.01 2020-02-02 19:06:37 +00:00
volth
c53660d143 [cpan2nix] perlPackages.StringRewritePrefix: 0.007 -> 0.008 2020-02-02 19:06:37 +00:00
volth
2bc2217913 [cpan2nix] perlPackages.FileFindObjectRule: 0.0311 -> 0.0312 2020-02-02 19:06:37 +00:00
volth
8b6845ae64 [cpan2nix] perlPackages.ExtUtilsCppGuess: 0.20 -> 0.21
dependencies:
perlPackages.ExtUtilsCBuilder: 0.280231 -> 0.280234
2020-02-02 19:06:37 +00:00
volth
70d08db8fe [cpan2nix] perlPackages.DevelPatchPerl: 1.80 -> 1.84 2020-02-02 19:06:36 +00:00
volth
535cd187ab [cpan2nix] perlPackages.EV: 4.29 -> 4.32 2020-02-02 19:06:36 +00:00
volth
f2a88ef507 [cpan2nix] perlPackages.ack: v3.3.0 -> v3.3.1 2020-02-02 19:06:36 +00:00
volth
18acd4314e [cpan2nix] perlPackages.FileFindObject: 0.3.4 -> 0.3.5 2020-02-02 19:06:36 +00:00
volth
951c2df1a0 [cpan2nix] perlPackages.DBDPg: 3.10.0 -> 3.10.3 2020-02-02 19:06:36 +00:00
volth
a1b9dc32f7 [cpan2nix] perlPackages.YAMLSyck: 1.31 -> 1.32 2020-02-02 19:06:36 +00:00
volth
d607b6be8e [cpan2nix] perlPackages.YAMLLibYAML: 0.80 -> 0.81 2020-02-02 19:06:36 +00:00
volth
1d79f7a6fa [cpan2nix] perlPackages.TimeLocal: 1.28 -> 1.30 2020-02-02 19:06:35 +00:00
volth
0948253d18 [cpan2nix] perlPackages.TimeDate: 2.30 -> 2.31 2020-02-02 19:06:35 +00:00
volth
2ebe91917e [cpan2nix] perlPackages.TieFile: 1.00 -> 1.05 2020-02-02 19:06:35 +00:00
volth
165f39a31a [cpan2nix] perlPackages.TestSimple13: 1.302170 -> 1.302171 2020-02-02 19:06:35 +00:00
volth
aaf5b22a9e [cpan2nix] perlPackages.TemplateToolkit: 3.003 -> 3.007 2020-02-02 19:06:35 +00:00
volth
6e70fad7ec [cpan2nix] perlPackages.SetObject: 1.39 -> 1.40 2020-02-02 19:06:35 +00:00
volth
386412fc82 [cpan2nix] perlPackages.RegexpParser: 0.22 -> 0.23 2020-02-02 19:06:35 +00:00
volth
ee8cf0a62d [cpan2nix] perlPackages.PathTiny: 0.108 -> 0.110 2020-02-02 19:06:34 +00:00
volth
761f82683f [cpan2nix] perlPackages.NetIdent: 1.24 -> 1.25 2020-02-02 19:06:34 +00:00
volth
ea8e6a8b19 [cpan2nix] perlPackages.Mojolicious: 8.30 -> 8.32 2020-02-02 19:06:34 +00:00
volth
b3d3481853 [cpan2nix] perlPackages.IPCSystemSimple: 1.25 -> 1.26 2020-02-02 19:06:34 +00:00
volth
c9da52270f [cpan2nix] perlPackages.IOTty: 1.12 -> 1.14 2020-02-02 19:06:34 +00:00
volth
881b5a42f4 [cpan2nix] perlPackages.IOStringy: 2.112 -> 2.113 2020-02-02 19:06:34 +00:00
volth
f2c7af88ba [cpan2nix] perlPackages.IO: 1.39 -> 1.42 2020-02-02 19:06:34 +00:00
volth
8f7cf15296 [cpan2nix] perlPackages.ExtUtilsMakeMaker: 7.42 -> 7.44 2020-02-02 19:06:33 +00:00
volth
9056ad0fa2 [cpan2nix] perlPackages.Error: 0.17028 -> 0.17029 2020-02-02 19:06:33 +00:00
volth
46fd509d87 [cpan2nix] perlPackages.CPANPerlReleases: 5.20191220 -> 5.20200120 2020-02-02 19:06:33 +00:00
volth
7726017483 [cpan2nix] perlPackages.CDB_File: 0.99 -> 1.01 2020-02-02 19:06:33 +00:00
volth
923878af0d perlPackages.XMLLibXSLT: 1.96 -> 1.97 2020-02-02 19:06:33 +00:00
volth
c8f26a956c fix tests 2020-02-02 19:06:33 +00:00
volth
7bbdd029d7 [cpan2nix] perlPackages.TaskFreecellSolverTesting: cleanup 2020-02-02 19:06:32 +00:00
volth
08bea27f1c [cpan2nix] perlPackages.NetAmazonS3: 0.86 -> 0.87 2020-02-02 19:06:32 +00:00
volth
1649f3eb78 [cpan2nix] perlPackages.DBIxClassHelpers: 2.034001 -> 2.034002 2020-02-02 19:06:32 +00:00
volth
024f02a81e [cpan2nix] perlPackages.MooseXDaemonize: 0.21 -> 0.22 2020-02-02 19:06:32 +00:00
volth
68b9e2de0f [cpan2nix] perlPackages.TextHogan: 2.02 -> 2.03 2020-02-02 19:06:32 +00:00
volth
2d5f0aebe7 [cpan2nix] perlPackages.Moose: 2.2011 -> 2.2012 2020-02-02 19:06:32 +00:00
volth
31b9472735 [cpan2nix] perlPackages.DateTimeFormatNatural: 1.07 -> 1.08 2020-02-02 19:06:32 +00:00
volth
09e14a06f9 [cpan2nix] perlPackages.CodeTidyAll: 0.74 -> 0.75 2020-02-02 19:06:32 +00:00
volth
799a6d55ae [cpan2nix] perlPackages.Swim: 0.1.46 -> 0.1.48 2020-02-02 19:06:31 +00:00
volth
cdd5cf8579 [cpan2nix] perlPackages.PerlCritic: 1.134 -> 1.136 2020-02-02 19:06:31 +00:00
volth
dd0a63fcbe [cpan2nix] perlPackages.Mojomysql: 1.17 -> 1.18 2020-02-02 19:06:31 +00:00
volth
317cede6b8 [cpan2nix] perlPackages.InlineC: cleanup 2020-02-02 19:06:31 +00:00
volth
e5942210aa [cpan2nix] perlPackages.NetDBus: 1.1.0 -> 1.2.0 2020-02-02 19:06:31 +00:00
volth
01b4930749 [cpan2nix] perlPackages.EmailSender: 1.300031 -> 1.300034 2020-02-02 19:06:31 +00:00
volth
c27e9a0e1e [cpan2nix] perlPackages.LWP: 6.42 -> 6.43 2020-02-02 19:06:31 +00:00
volth
af2bbf1066 [cpan2nix] perlPackages.MojoliciousPluginOpenAPI: 2.18 -> 2.20 2020-02-02 19:06:31 +00:00
volth
932735b095 [cpan2nix] perlPackages.JSONValidator: 3.16 -> 3.17 2020-02-02 19:06:30 +00:00
volth
cb0f675085 [cpan2nix] perlPackages.Pegex: 0.70 -> 0.72
dependencies:
perlPackages.XXX: init at 0.33
2020-02-02 19:06:30 +00:00
volth
07e29a43fa [cpan2nix] perlPackages.AlienBuild: 1.92 -> 1.94 2020-02-02 19:06:30 +00:00
volth
df88be7d52 [cpan2nix] perlPackages.HTTPCookies: 6.07 -> 6.08 2020-02-02 19:06:30 +00:00
volth
b63005f38f [cpan2nix] perlPackages.Specio: 0.44 -> 0.45 2020-02-02 19:06:30 +00:00
volth
6e97ebe649 [cpan2nix] perlPackages.DirManifest: 0.2.0 -> 0.6.0 2020-02-02 19:06:30 +00:00
volth
878d9e642d [cpan2nix] perlPackages.TemplateToolkit: 2.29 -> 3.003 2020-02-02 19:06:30 +00:00
volth
c8cae80fcb [cpan2nix] perlPackages.DBDMock: 1.52 -> 1.55 2020-02-02 19:06:29 +00:00
volth
4a79e35b3d [cpan2nix] perlPackages.PerlPrereqScannerNotQuiteLite: 0.9908 -> 0.9909 2020-02-02 19:06:29 +00:00
volth
47e6d60250 [cpan2nix] perlPackages.DataICal: 0.23 -> 0.24 2020-02-02 19:06:29 +00:00
volth
8916384ed8 [cpan2nix] perlPackages.Clipboard: 0.20 -> 0.21 2020-02-02 19:06:29 +00:00
volth
ea1b0334ce [cpan2nix] perlPackages.DateManip: 6.78 -> 6.79 2020-02-02 19:06:29 +00:00
volth
1be895c72a [cpan2nix] perlPackages.CPANPLUS: 0.9178 -> 0.9904 2020-02-02 19:06:29 +00:00
volth
fa05e6ce8f [cpan2nix] perlPackages.CGI: 4.44 -> 4.45 2020-02-02 19:06:29 +00:00
volth
c45403ddb6 [cpan2nix] perlPackages.TypeTiny: 1.006000 -> 1.008003 2020-02-02 19:06:28 +00:00
volth
66334236ce [cpan2nix] perlPackages.MailAuthenticationResults: 1.20180923 -> 1.20200108 2020-02-02 19:06:28 +00:00
volth
bf4bc1f3ba [cpan2nix] perlPackages.TestWarnings: 0.027 -> 0.028 2020-02-02 19:06:28 +00:00
volth
ac7403cce0 [cpan2nix] perlPackages.GlibObjectIntrospection: 0.047 -> 0.048 2020-02-02 19:06:28 +00:00
volth
d7b0425e02 [cpan2nix] perlPackages.FilesysNotifySimple: 0.13 -> 0.14 2020-02-02 19:06:28 +00:00
volth
0b5406b9b8 [cpan2nix] perlPackages.IOCompress: 2.090 -> 2.093 2020-02-02 19:06:28 +00:00
volth
5c2d7dd2ca [cpan2nix] perlPackages.ack: v3.2.0 -> v3.3.0 2020-02-02 19:06:27 +00:00
volth
a441ff0e2c [cpan2nix] perlPackages.ProcFind: 0.04 -> 0.051 2020-02-02 19:06:27 +00:00
volth
7a222a8418 [cpan2nix] perlPackages.LinuxInotify2: 2.1 -> 2.2 2020-02-02 19:06:27 +00:00
volth
61899a2fce [cpan2nix] perlPackages.ConfigAutoConf: 0.317 -> 0.318 2020-02-02 19:06:27 +00:00
volth
e48b125b13 [cpan2nix] perlPackages.BusinessISBN: 3.004 -> 3.005 2020-02-02 19:06:27 +00:00
volth
a192737652 [cpan2nix] perlPackages.TestSimple13: 1.302169 -> 1.302170 2020-02-02 19:06:27 +00:00
volth
c5ba0c7257 [cpan2nix] perlPackages.ProtocolRedis: 1.0010 -> 1.0011 2020-02-02 19:06:27 +00:00
volth
3d3d38df4f [cpan2nix] perlPackages.PerlTidy: 20190915 -> 20200110 2020-02-02 19:06:24 +00:00
volth
06748f39bf [cpan2nix] perlPackages.OLEStorage_Lite: 0.19 -> 0.20 2020-02-02 19:05:22 +00:00
volth
dc3dae4fa5 [cpan2nix] perlPackages.Mojolicious: 8.26 -> 8.30 2020-02-02 19:05:22 +00:00
volth
4cf393dbe7 [cpan2nix] perlPackages.ModuleFind: 0.13 -> 0.15 2020-02-02 19:05:22 +00:00
volth
e72eb1572d [cpan2nix] perlPackages.MCE: 1.862 -> 1.865 2020-02-02 19:05:21 +00:00
volth
1e4cc28b74 [cpan2nix] perlPackages.LogAny: 1.707 -> 1.708 2020-02-02 19:05:21 +00:00
volth
1ec0d0ee72 [cpan2nix] perlPackages.IOStringy: 2.111 -> 2.112 2020-02-02 19:05:21 +00:00
volth
61526c5217 [cpan2nix] perlPackages.FileSlurp: 9999.28 -> 9999.29 2020-02-02 19:05:21 +00:00
volth
ed23d140ef [cpan2nix] perlPackages.FCGI: 0.78 -> 0.79 2020-02-02 19:05:21 +00:00
volth
1105ec2af3 [cpan2nix] perlPackages.ExtUtilsMakeMaker: 7.38 -> 7.42 2020-02-02 19:05:21 +00:00
volth
442aa82d5a [cpan2nix] perlPackages.Encode: 3.01 -> 3.02 2020-02-02 19:05:21 +00:00
volth
7b872371a8 [cpan2nix] perlPackages.DevelPPPort: 3.55 -> 3.56 2020-02-02 19:05:20 +00:00
volth
31225e1bc3 [cpan2nix] perlPackages.DBFile: 1.852 -> 1.853 2020-02-02 19:05:20 +00:00
volth
673528823a [cpan2nix] perlPackages.CompressRawZlib: 2.090 -> 2.093 2020-02-02 19:05:20 +00:00
volth
fc717654c2 [cpan2nix] perlPackages.CompressRawBzip2: 2.090 -> 2.093 2020-02-02 19:05:20 +00:00
volth
50f5cf5bcc [cpan2nix] perlPackages.CPANPerlReleases: 4.22 -> 5.20191220 2020-02-02 19:05:20 +00:00
volth
6d16885e50 [cpan2nix] perlPackages.BusinessISBNData: 20140910.003 -> 20191107 2020-02-02 19:05:20 +00:00
volth
c6f0f8f28d [cpan2nix] perlPackages.BKeywords: 1.20 -> 1.21 2020-02-02 19:05:19 +00:00
volth
ef1ad4e8a5 [cpan2nix] perlPackages.ArchiveExtract: 0.80 -> 0.86 2020-02-02 19:05:19 +00:00
volth
97dadfacd7 [cpan2nix] perlPackages.MathRandom: init at 0.72 2020-02-02 19:05:19 +00:00
volth
f9d3917775 [cpan2nix] perlPackages.AnyEventFastPing: init at 2.1 2020-02-02 19:05:19 +00:00
volth
a3f23d764a [cpan2nix] perlPackages.AsyncPing: init at 2016.1207 2020-02-02 19:05:19 +00:00
volth
41ffef4960 [cpan2nix] perlPackages.NetAsyncPing: init at 0.004001
dependencies:
perlPackages.ClassGomor: init at 1.03
perlPackages.Future: init at 0.43
perlPackages.IOAsync: init at 0.75
perlPackages.MathBase85: init at 0.4
perlPackages.NetFrame: init at 1.21
perlPackages.NetFrameLayerIPv6: init at 1.08
perlPackages.NetIPv4Addr: init at 0.10
perlPackages.NetIPv6Addr: init at 0.96
perlPackages.TestIdentity: init at 0.01
perlPackages.TestRefcount: init at 0.10
2020-02-02 19:05:19 +00:00
Maximilian Bosch
5c2a7d0f07
Merge pull request #79015 from mayflower/pkg/prometheus-xmpp-alerts
prometheus-xmpp-alerts: init at 0.4.2
2020-02-02 18:46:53 +01:00
Mario Rodas
c7458ab9ce
Merge pull request #79021 from sikmir/ytop
ytop: init at 0.4.0
2020-02-02 11:18:00 -05:00
Franz Pletz
0036573d30
Merge pull request #79084 from sikmir/tt2020
tt2020: init at 2020-01-05
2020-02-02 15:48:21 +00:00
Frederik Rietdijk
c195ef6aab
Merge pull request #78928 from NixOS/staging-next
Staging next
2020-02-02 15:35:18 +01:00
Frederik Rietdijk
e4c28f78e7 Merge staging-next into staging 2020-02-02 15:33:13 +01:00
Maximilian Bosch
0c960262d1
oraclejdk8: document removals in the release notes 2020-02-02 12:11:50 +01:00
Maximilian Bosch
abb5778c67
Merge pull request #77783 from volth/oraclejdk8u241
oraclejdk8: 8u211 -> 8u241
2020-02-02 12:10:33 +01:00
rnhmjoj
1c38ce51ef
rxvt-unicode: add aliases for name change 2020-02-02 12:00:51 +01:00
rnhmjoj
27b3df0840
rxvt-unicode: rewrite plugin system 2020-02-02 11:24:00 +01:00
Nikolay Korotkiy
d6a4679300
tt2020: init at 2020-01-05 2020-02-02 12:59:48 +03:00