Commit graph

54238 commits

Author SHA1 Message Date
Daniël de Kok 042cda99f1
Merge pull request #102422 from freezeboy/remove-dvb-apps
dvb_apps: remove (broken since 2018)
2020-11-03 13:15:24 +01:00
Daniël de Kok d33642978c
Merge pull request #102412 from freezeboy/remove-flvtool2
flvtool2: remove (broken since 2018)
2020-11-03 13:14:43 +01:00
Frederik Rietdijk 237966224d Merge master into staging-next 2020-11-03 12:06:06 +01:00
Robert Hensing f8ad73b9d8 haskell.compiler.ghc8102BinaryMinimal: init
To stay within hydra limit of 2^31 output size on aarch64-linux
2020-11-03 12:01:41 +01:00
freezeboy 516f48a84c dvb_apps: remove (broken since 2018) 2020-11-03 11:45:45 +01:00
freezeboy 2c233e06d8 flvtool2: remove (broken since 2018) 2020-11-03 11:43:07 +01:00
freezeboy d4ad2a8723 pdf2htmlEx: remove
This package is broken since 2018 and the project itself is abandonned
upstream since 2017, so there is no hope to see it evolve
2020-11-03 11:41:29 +01:00
freezeboy fe4c52b628 gnomeExtensions.battery-status: remove (broken)
upsstream project is no more maintained for recent
gnome-shell releases
2020-11-03 00:46:14 +01:00
freezeboy 2549a11c58 freepops: remove
this software has not received any update since 2014, the website
is stating that it is unmaintained:

http://freepops.sourceforge.net/

It is also marked broken since 6 years
2020-11-03 00:34:04 +01:00
ajs124 b76c51f137
Merge pull request #102419 from freezeboy/remove-unarj
unarj: remove (broken since 2016, insecure since 2015)
2020-11-03 00:01:14 +01:00
Maciej Krüger b6e4df5729
Merge pull request #102087 from luc65r/pkg/keystone
keystone: init at 0.9.2
2020-11-02 21:04:50 +01:00
luc65r 1e9d2d2f12 keystone: init at 0.9.2 2020-11-02 21:01:25 +01:00
Maciej Krüger 16abe1a322
Merge pull request #102085 from luc65r/pkg/unicorn
unicorn(-emu): 1.0.2-rc4 -> 1.0.2
2020-11-02 20:56:38 +01:00
Maciej Krüger 8c3d91f77f
Merge pull request #102017 from luc65r/pkg/conv 2020-11-02 20:45:13 +01:00
luc65r 448729ea16 convfont: init at 1.0 2020-11-02 20:40:32 +01:00
luc65r fb3d797242 convimg: init at 8.3 2020-11-02 20:40:25 +01:00
Doron Behar 3f84b2d3f0
Merge pull request #102380 from doronbehar/pkg/musescore 2020-11-02 19:52:59 +02:00
Jonathan Ringer f8d5953a0a
python3Packages.azure-synapse-artifacts: init at 0.3.0 2020-11-02 09:41:56 -08:00
Kir Ax 2f00a2b066 textadept-11: add textadept 11_beta 2020-11-02 21:19:55 +07:00
Kir Ax ef7fff6a49 textadept: moved to subdir for 10th version 2020-11-02 21:13:09 +07:00
Kevin Cox ba84f8b1ba
Merge pull request #101503 from bbigras/angle-grinder
angle-grinder: init at 0.15.0
2020-11-02 08:12:04 -05:00
Mario Rodas 8eea6fcf0d
Merge pull request #91675 from MetaDark/cxxtest
cxxtest: package includes and run tests
2020-11-02 05:02:35 -05:00
freezeboy 1f7e201e9e plink: remove (broken since 2014) 2020-11-02 03:24:16 +01:00
freezeboy 209fbcb121 unarj: remove (broken since 2016, insecure since 2015) 2020-11-02 03:10:24 +01:00
Kevin Cox ce3a2e6e49
Merge pull request #91792 from jcpetruzza/kakoune-plugins
kakoune: rework plugin support
2020-11-01 15:07:28 -05:00
Pavol Rusnak 0d8f43c402 python3Packages.ovito: 3.0.0 -> 3.3.1 2020-11-01 11:51:17 -08:00
roconnor eaf06c30ac
Merge pull request #101945 from roconnor/OSCAR
OSCAR: init at 1.2.0
2020-11-01 14:25:49 -05:00
Doron Behar 07cb335125 musescore: 3.5.0 -> 3.5.2
Use fetchFromGitHub as it seems the only way to get the source now. Also
use libsForQt5 as it works.
2020-11-01 21:03:55 +02:00
Pavol Rusnak 36758a34a8 uutils-coreutils: Use Python3 sphinx for docs 2020-11-01 10:49:52 -08:00
freezeboy 4fe0ea478a google-compute-engine: refactor to use python3 2020-11-01 09:14:01 -08:00
freezeboy 718d8bf976 google-cloud-sdk: refactor to use python3 2020-11-01 09:14:01 -08:00
Vincent Laporte 49bdf0dace ocamlPackages.mirage-profile: init at 0.9.1 2020-11-01 17:16:29 +01:00
Daniel Gorin 550389392a kakoune: rework plugin support
The previous implementation of plugin-support for the kakoune derivation
was based on generating, at build time, a `plugins.kak` file that would
source all .kak files in the list of plugins, and wrap the `kak` binary
in a script that would add some command-line arguments so that this
file gets loaded on start-up. The main problem with this approach
is that the plugins' code get executed *after* the user's configuration
file is loaded, so effectively one cannot automatically activate/configure
these plugins.

The idiomatic way of loading plugins is ensuring they end up installed
somwhere under `share/kak/autoload`. Because plugins are already being
packaged to have their code in `share/kak/autoload/plugins/<name-of-plugin>`,
we can obtain a derivation that includes the plugins simply by doing a
`symlinkJoin` of `kakoune-unwrapped` and all the requested plugins.

For this to work, we need to fix two issues:

  1. By default, kakoune makes `share/kak/autoload` a symbolic link to
     `share/kak/rc`, which contains all builtin definitions. We need
     to patch this to put the symlink under `share/kak/autoload/rc`, so that
     the join works.

  2. By default kakoune expects the `autoload` directory to be in
     `../share/kak/autoload` relative to the location of the `kak` binary.
     We need to set the `KAKOUNE_RUNTIME` to point the symlinked
     share/kak for this to work.
2020-11-01 14:35:49 +00:00
gnidorah 61040fa997 iortcw: init at 1.51c 2020-11-01 11:45:57 +01:00
Frederik Rietdijk 790714af65 kdeApplications.okteta: remove alias
After 3 years we can remove the alias.
2020-11-01 11:19:00 +01:00
Frederik Rietdijk fe9f55907e Merge master into staging-next 2020-11-01 11:06:08 +01:00
Frederik Rietdijk 54f7498601
Merge pull request #101369 from doronbehar/pkg/kdeApplications/qt515
kdeApplications: Use latest qt515 by default
2020-11-01 11:05:05 +01:00
Michele Guerini Rocco 93e0a06de4
Merge pull request #102102 from rnhmjoj/cshatag
cshatag: init at 2019-12-03
2020-11-01 10:12:59 +01:00
Frederik Rietdijk 7a8d5dc8a6 Merge master into staging-next 2020-11-01 10:10:47 +01:00
Matthieu Coudron 36ac62c6d7
Merge pull request #102231 from teto/neovim_fix
neovim: revert change to extraMakeWrapperArgs
2020-10-31 19:36:49 +01:00
rnhmjoj 2aaf963019
cshatag: init at 2019-12-03 2020-10-31 18:43:15 +01:00
Nicolai Kellerer c1cf4abe6d pythonPackages.toolz: create Python 2 package 2020-10-31 09:55:25 -07:00
Mario Rodas 2faef82610
Merge pull request #101986 from mweinelt/loki2
grafana-loki: 1.6.1 -> 2.0.0
2020-10-31 11:28:05 -05:00
Matthieu Coudron db157224ef neovim: restore neovim.override
the compatibility layer for `wrapNeovim` introduced in https://github.com/NixOS/nixpkgs/pull/101265
broke the recommended way of configuration:
https://nixos.org/manual/nixpkgs/stable/#custom-configuration
https://nixos.wiki/wiki/Vim#Customizations

restore the old ways.
2020-10-31 15:52:34 +01:00
Ryan Mulligan 893c94b4b2
Merge pull request #90322 from pasqui23/zplg2
zplugin: init at 2.3
2020-10-31 07:34:03 -07:00
Vladimír Čunát dfd3ede68d
Merge branch 'master' into staging-next 2020-10-31 14:30:44 +01:00
Doron Behar 0989b93cf8 rtsp-simple-server: init at 0.10.0 2020-10-31 10:56:14 +02:00
ajs124 edce0de0d2
Merge pull request #102164 from helsinki-systems/drop/skype-call-recorder
skype_call_recorder: drop
2020-10-31 03:46:46 +01:00
ajs124 a5bce15b5d skype_call_recorder: drop
hasn't worked since 2017: https://atdot.ch/scr/2017/06/important-information-regarding-skype-version-5/
the version packaged here is also from 2008, as far as I can tell
the last upstream release was 2016
2020-10-31 00:42:36 +01:00
Martin Weinelt 5a22c6f167
Merge pull request #99521 from mweinelt/irc-stuff
python3Packages.{irctokens,ircstates,ircrobots}: init
2020-10-30 22:41:05 +01:00
Martin Weinelt 4221de2b4f
Merge pull request #99523 from mweinelt/ircdog
ircdog: init at 0.2.1
2020-10-30 22:39:27 +01:00
Jan Tojnar 3d3792020d
Merge pull request #102163 from mkenigs/rm-glacier-cmd
amazon-glacier-cmd-interface: remove package
2020-10-30 22:05:50 +01:00
WORLDofPEACE 8faab3de9a
Merge pull request #101384 from eyJhb/among-sus
among-sus: init at 2020-10-22
2020-10-30 16:45:53 -04:00
eyjhb 76cd544455
among-sus: init at 2020-10-29 2020-10-30 21:22:42 +01:00
WORLDofPEACE 99600df584
Merge pull request #101112 from deviant/remove-uemacs
uemacs: remove
2020-10-30 16:01:47 -04:00
Doron Behar 09fd4270d7 kile: some slight improvements/fixes
Use `buildInputs` instead of `propagatedBuildInputs` - should reduce
closure size a bit. Don't wrap executables twice. Move `kdoctools` to
native. Use libsForQt5 - default version (works).

Co-authored-by: Frederik Rietdijk <fridh@fridh.nl>
2020-10-30 20:39:19 +02:00
Doron Behar 77e081bb2b nixos/sddm: Use libsForQt514.sddm if needed (for lxqt)
Currently lxqt is a desktop environment that's compiled against qt514.
To avoid possible issues (#101369), we (hopefully) use the same qt
version as the desktop environment at hand. LXQT should move to qt515,
and for the long term the correct qt version should be inherited by the
sddm module.
2020-10-30 20:37:59 +02:00
Doron Behar a728279d70 sddm: Move to libsForQt5*
Part of #101369: Inherit it in aliases.nix, for backwards compatibility.
2020-10-30 20:37:59 +02:00
Doron Behar 9f9bdaba97 packagekit-qt: Move to libsForQt5 scope.
Since it's a dependency of kde's "discover", it's best to define it
there to avoid a possible mixed qt5 versions usage (#101369).
2020-10-30 20:37:58 +02:00
Doron Behar 3ce9e203c3 drumstick: Define in libsForQt5 scope.
Since it is used in minuet and kde's metronome and kmetronome, it's
safer this way to make sure the same qt version is used there.
2020-10-30 20:37:58 +02:00
Doron Behar 2508fa5252 lxqt.compton-conf: Use compatible qt5 versions
Slightly related to #101369, a follow up to:
4fd58aa4e1
2020-10-30 20:37:58 +02:00
Doron Behar cf9f00b56d maia-icon-theme: Don't import kdeApplications
Use libsForQt5.callPackage (#101369).
2020-10-30 20:37:58 +02:00
Lassulus cde8207a1e
Merge pull request #88544 from Pablo1107/ledger2beancount-2.1
ledger2beancount: init at 2.1
2020-10-30 19:36:09 +01:00
Doron Behar b5c6505e63 treewide: Safer libsForQt5.callPackage
Intro:

Part of #101369: Every attribute from kdeApplications and kdeFrameworks
can be built with a few different qt5 versions. It's hard to tell the
difference between an application and a library and some applications
rely on inputs from kdeApplications and libsForQt5 alike.

Before this change, some applications that were defined with
`libsForQt5.callPackage` used libraries from the kde* sets compiled with
a specific qt5 version,

Due to `inherit (kde*) <lib or app>;` used in the widest scope, we had
issues with packages that depended on packages defined by this
`inherit`. This led to mismatched qt versions used in the same inputs,
or the inputs of inputs etc.

Hence, we added to all libsForQt5* sets, packages that will be used from
the correct libsForQt5 set, in accordance to the
`libsForQt5*.callPackage` used. All `inherit (kdeApplications) <pkgs>`
and similar inheritance was moved out of all-packages.nix to aliases.nix
only for backwards compatibility.

Now some KDE applications show up in the attribute sets `libsForQt5*`
which didn't show up there previously. This is sort of misleading, as
these are not necessary libraries, but they show up in the wider scope
thanks to them in aliases.nix. Hence it's the best that can be done
considering the circumstances and the urgency of the issue.
2020-10-30 20:32:19 +02:00
Doron Behar 2df527228f all-packages: Put all libsForQt5 near each other 2020-10-30 20:30:34 +02:00
ajs124 0126c86672 linuxstopmotion: 0.8.0 -> 0.8.5
and qt4 -> qt5
2020-10-30 19:26:36 +01:00
Doron Behar 62318eb816 kf5gpgmepp: Define in libsForQt5
Since it's a qt library, we can't guarantee every package using it as a
dependency will need it compiled with the same qt version, we put it in
all `libsForQt5*` scopes (#101369).
2020-10-30 20:26:30 +02:00
Doron Behar cb29abf3a9 all-packages.nix: Inherit kdesu in a different scope
Part of #101369: In order to avoid packages using the default `kdesu`
always built with qt515, we put it in scope only for packages defined
with a `libsForQt5`, to avoid incompatible qt versions used together in
inputs of a package.
2020-10-30 20:16:37 +02:00
Doron Behar c172f144f4 kdeApplications: Use latest qt515 by default
Fixes #100707 - Since KDE's maintainers don't allow non official kde
applications under the `kdeApplications` path, many packages that depend
on KDE libraries and applications are defined in all-packages.nix.
Overriding all kdeApplications to use qt514 while all other
`libsForQt5.callPackage` in all-packages.nix are using qt515, causes
collisions.
2020-10-30 20:13:49 +02:00
pablo1107 c268484e05 ledger2beancount: init at 2.1 2020-10-30 14:58:29 -03:00
Maximilian Bosch 6928309c51
citrix_workspace: add 20.10.0
ChangeLog: https://docs.citrix.com/en-us/citrix-workspace-app-for-linux/whats-new.html#whats-new-in-2010
2020-10-30 18:36:21 +01:00
Maximilian Bosch 93a00bec3e
citrix_workspace: remove attributes for old versions; fix i686 build 2020-10-30 18:36:21 +01:00
Matthew Kenigsberg b5faf8e4c6 amazon-glacier-cmd-interface: remove package
Last real upstream activity appears to be ~6 years ago and depends on
python2 packages that will soon be vulnerable

Helps #101964
2020-10-30 11:44:57 -05:00
StigP b52da4e641
Merge pull request #102071 from zakame/contrib/perl-NetAsyncWebSocket
perlPackages.NetAsyncWebSocket: init at 0.13
2020-10-30 16:43:05 +00:00
StigP 685c059737
Merge pull request #102066 from zakame/contrib/perl-NetAsyncHTTP
perlPackages.NetAsyncHTTP: init at 0.47
2020-10-30 16:40:22 +00:00
Jonathan Ringer e6db435973 linux: add flavor metadata 2020-10-30 09:40:12 -07:00
Zak B. Elep 52c05c8791 perlPackages.NetAsyncWebSocket: init at 0.13 2020-10-30 23:17:17 +08:00
Peter Hoeg 0d25246f4d kdeconnect: part of kdeApplications 2020-10-30 22:34:02 +08:00
Zak B. Elep 489c73671a perlPackages.NetAsyncHTTP: init at 0.47 2020-10-30 22:11:30 +08:00
Mario Rodas e250fef768
Merge pull request #99920 from ericdallo/add-dart-to-flutter
flutter: Bump and add dart cache to flutter
2020-10-30 08:56:54 -05:00
Pierre Bourdon ee36b1cd5b plover.dev: fix Qt version pinning
Issue report: https://github.com/NixOS/nixpkgs/issues/65399#issuecomment-719066888

Similar issues in #98067.

Plover seems to work fine with Qt > 5.14 so this is an easy way to fix
the problem (as opposed to keeping the pinning and making it work with
PyQt).
2020-10-30 14:55:16 +01:00
Eric Dallo bee3fb885f
flutter: Add dart cache to flutter 2020-10-30 09:58:06 -03:00
Alex Whitt fcc6849bcd bacnet-stack: init at 1.0.0
Update pkgs/tools/networking/bacnet-stack/default.nix

Co-authored-by: Daniel Løvbrøtte Olsen <daniel.olsen99+GitHub@gmail.com>

bacnet-stack: Add maintainer and use the original GitHub repo

bacnet-stack: Alphabetize

Update pkgs/top-level/all-packages.nix

Co-authored-by: Jon <jonringer@users.noreply.github.com>
2020-10-29 21:48:58 -07:00
Benjamin Hipple fee705332d
Merge pull request #102120 from helsinki-systems/drop/attica
attica: drop
2020-10-29 22:13:20 -04:00
Sebastien Braun c0bcfebaef rmlint: Use Python3 sphinx for docs
Eliminates a python2 dependency.
2020-10-29 18:56:02 -07:00
ajs124 0f1a83cf55 attica: drop
as far as I can tell, this file is completely unused.

Everything that uses attica uses it from pkgs/development/libraries/kde-frameworks/attica.nix
2020-10-30 02:22:09 +01:00
Matthew Kenigsberg ffde641ac9 alibuild: use python3
Helps #101964
2020-10-29 17:30:30 -07:00
Sebastien Braun 8bdb5204be aria2: refactor to avoid python2 dependency
Use python3 Sphinx package instead of python2 Sphinx package,
to avoid build-time dependency on python 2, as per
https://github.com/NixOS/nixpkgs/issues/101964
2020-10-29 16:02:32 -07:00
MetaDark ff4a1cf4d8 git-review: build with python3
Also updated source to the new repo and added myself as a maintainer
2020-10-29 16:01:12 -07:00
luc65r 345f1d11d3 unicorn(-emu): 1.0.2-rc4 -> 1.0.2 2020-10-29 21:15:42 +01:00
Timo Kaufmann aee8263788
Merge pull request #100653 from trepetti/marker
marker: init at 2020.04.04
2020-10-29 18:47:37 +01:00
Russell O'Connor 069e485c18 OSCAR: init at 1.2.0 2020-10-29 11:00:13 -04:00
luc65r 4df7857cfd convbin: init at 3.0 2020-10-29 15:39:52 +01:00
Anderson Torres 75b92ef1a1
Merge pull request #101247 from wheelsandmetal/add-nuraft-lib
nuraft: init at 1.1.2
2020-10-29 09:24:06 -03:00
Anderson Torres 7cb747c3b7
Merge pull request #99480 from Sohalt/tarssh
tarssh: init at 0.4.0
2020-10-29 08:35:40 -03:00
wheelsandmetal 166eadee60 nuraft: init at 1.1.2 2020-10-29 10:24:59 +00:00
Matthieu Coudron 2eb1610725
neovimUtils: neovim utilities to handle more usecases
Current nixpkgs always wraps neovim with the "-u" which has sideeffects as explained in https://github.com/NixOS/nixpkgs/issues/55376 : 
1.  vim won't set the variable $MYVIMRC as explained #34215
 2. vim skips loading folder-specific .vimrc / .nvimrc

I wanted to provide a way for users to better control what flags are used to wrap neovim. This is achived by introducing wrapNeovimUnstable et neovimUtils, utilities to help with that. We provide a compatibility layer so that wrapNeovim still works and to let us experiment with wrapNeovimUnstable to better control neovim configuration, plugin dependencies, haskell environment etc so that it becomes easier to generate per-project neovim config.

With this commit, it's possible for instance for home-manager to wrap neovim without the `-u` and just write the config in the
expected $XDG_CONFIG_HOME/nvim/init.vim .
Expect wrapNeovimUnstable interface to evolve in the upcoming months.
2020-10-29 09:50:26 +01:00
Vincent Laporte 2ccfc2962e opa: build with OCaml 4.03 2020-10-29 06:35:15 +01:00
Mario Rodas 322aaa9b19 fraunces: init at 1.000 2020-10-29 04:20:00 +00:00
Mario Rodas 8305cce210
Merge pull request #100638 from xrelkd/add/clipcat
clipcat: init at 0.4.19
2020-10-28 23:00:38 -05:00
Tom Repetti 7559a99131 marker: init at 2020.04.04 2020-10-28 23:01:47 -04:00
Anderson Torres 066bf7dd5d
Merge pull request #101894 from AndersonTorres/terminal-emulators
Create a directory-category for terminal emulators
2020-10-28 23:27:05 -03:00
AndersonTorres 5b5aac40d5 Terminal emulators: whitespace cleanup and regroup
Because editorconfig complains, and also why not to organize them
"ascii-betically"?
2020-10-28 22:28:32 -03:00
Martin Weinelt 09bbd4017f
grafana-loki: 1.6.1 -> 2.0.0
Convert to use buildGoModule and add a patch for a test failing on
golang>=1.15.
2020-10-29 01:16:58 +01:00
Anderson Torres c13da09a6f
Merge pull request #101231 from djanatyn/pkg/peaclock
peaclock: init at 0.4.3
2020-10-28 16:06:00 -03:00
Thomas Depierre 63caecee7d riak-cs: delete 2020-10-28 19:31:33 +01:00
Daniël de Kok 93b3fa6088 python3Packages.setuptools-rust: init at 0.11.3 2020-10-28 10:41:27 -07:00
AndersonTorres 2bb3a9da24 A directory-category for terminal emulators
This is a mostly cosmetical commit, in the sense it doesn't change the contents
of any package, but reorganizes the overall Nixpkgs expressions.

Terminal emulators are an ubiquitous tool for any Unix user; even the beginners
are routinely familiarized to it. And, manifestly, there are many
implementations of terminal emulators out there, from those traditionally made
in C and C++ to those written in Haskell and Go.

Terminal emulators deserve more highlight. This commit does that by creating a
category for them.
2020-10-28 10:22:39 -03:00
Emery Hemingway 17a9d2187d vix: init at 0.1.2 2020-10-28 12:34:43 +01:00
Maximilian Bosch 3d04e9a779
Merge pull request #101669 from Zopieux/nxdomain
nxdomain: init at 1.0.1
2020-10-28 10:49:50 +01:00
Ben Siraphob 9b1a86f4d8 spasm-ng: init at unstable-2020-08-03 2020-10-28 13:39:15 +07:00
Alexandre Macabies c7f2086af5 nxdomain: init at 1.0.1 2020-10-27 23:41:01 +01:00
Vincent Laporte 47183f25a0 ocamlPackages.mirage-block: init at 2.0.1 2020-10-27 22:00:51 +01:00
Timo Kaufmann 55669a901b
Merge pull request #95530 from midchildan/package/sourcetrail
sourcetrail: 2019.3.46 -> 2020.2.43
2020-10-27 20:33:59 +01:00
Martin Weinelt 0ead6f8cfd
Merge pull request #101557 from mvnetbiz/zigpy-znp
home-assistant: pythonPackages.zigpy-znp: init at 0.2.2; pythonPackages.zigpy: 0.22.2 -> 0.26.0; pythonPackages.zigpy-cc: 0.5.1 -> 0.5.2; pythonPackages.zigpy-xbee: 0.12.1 -> 0.13.0; pythonPackages.zigpy-zigate: 0.6.1 -> 0.6.2
2020-10-27 18:30:26 +01:00
David Arnold b016ae02e6
hostctl: init at 1.0.14 2020-10-27 11:17:55 -05:00
Michael Raskin 7371c2cc9b
Merge pull request #101837 from xfix/sgtpuzzles-20200610
sgtpuzzles: 20191114 -> 20200610
2020-10-27 16:08:02 +00:00
Eelco Dolstra c54308d27c
Disable the metrics job
We currently don't have a machine to build this job
(https://github.com/NixOS/nixos-org-configurations/issues/127) which
delays channel updates until hydra-queue-runner auto-cancels the job.
2020-10-27 17:05:35 +01:00
Aaron L. Zeng d240c4e1d1 ocamlPackages.bignum: init at 0.13 2020-10-27 16:04:06 +01:00
Jonathan Strickland c84ddc7bf4 peaclock: init at 0.4.3
Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>
2020-10-27 10:05:08 -04:00
midchildan f806d4c79a
sourcetrail: 2019.3.46 -> 2020.2.43 2020-10-27 22:55:18 +09:00
Konrad Borowski d838ef0795 sgtpuzzles: 20191114 -> 20200610 2020-10-27 11:28:02 +01:00
Timo Kaufmann f331acc1a2
Merge pull request #90430 from berbiche/byobu-screen
byobu: add screen backend
2020-10-27 09:45:03 +01:00
Lassulus 6a62663c60
Merge pull request #101548 from kmein/feature/vimv
vimv: init at unstable-2019-10-31
2020-10-27 07:44:33 +01:00
Matt Votava 760e367b6d python3Packages.zigpy-znp: init at 0.2.2, add tests 2020-10-26 22:48:40 -07:00
Denys Pavlov ff3dca56ed pythonPackages.sqlite-utils: init at 2.22 2020-10-26 22:04:12 -04:00
Ryan Mulligan 178d373a8a
Merge pull request #83687 from primeos/wshowkeys
wshowkeys: init at 2020-03-29
2020-10-26 18:55:16 -07:00
Nicolas Berbiche 3ac1ffe8b2
byobu: add support for the screen backend 2020-10-26 20:52:46 -04:00
Sarah Brofeldt d699505277
Merge pull request #100688 from henrikolsson/master
noise-suppression-for-voice: init at 2020-10-10
2020-10-26 20:05:27 +01:00
Henrik Olsson c24433bedb noise-suppression-for-voice: init at 2020-10-10 2020-10-26 19:40:26 +01:00
Maximilian Bosch 7b55516f94
Merge pull request #101762 from p-h/gradle-6.7
gradle: 6.6 -> 6.7
2020-10-26 16:20:02 +01:00
Ryan Mulligan 99725609cd
Merge pull request #89227 from f4814/rcon-init
rcon: init at 0.5
2020-10-26 06:56:21 -07:00
Anderson Torres ac08a3973c
Merge pull request #100536 from AndersonTorres/corectrl
corectrl: init at 1.1.1
2020-10-26 10:34:12 -03:00
Philippe Hürlimann fe217b9fb9 gradle: 6.6 -> 6.7 2020-10-26 14:26:24 +01:00
Janne Heß 038793bd1e
asterisk_18: Init at 18.0.0
I hope I bumped all attributes correctly.
2020-10-26 14:10:29 +01:00
Sandro Jäckel fd29e9a3c0 rustscan: fix building on darwin 2020-10-26 21:55:34 +10:00
Anderson Torres ad19f56230
Merge pull request #90276 from Ralith/pfsfix
pfstools: fix Qt environment
2020-10-26 08:39:23 -03:00
Anderson Torres 81573a6435
Merge pull request #81608 from layus/dafny-update3
dafny: pin z3 and Boogie version
2020-10-26 08:36:31 -03:00
Vladimír Čunát 89023c38fc
Recover the complicated situation after my bad merge
I made a mistake merge.  Reverting it in c778945806 undid the state
on master, but now I realize it crippled the git merge mechanism.
As the merge contained a mix of commits from `master..staging-next`
and other commits from `staging-next..staging`, it got the
`staging-next` branch into a state that was difficult to recover.

I reconstructed the "desired" state of staging-next tree by:
 - checking out the last commit of the problematic range: 4effe769e2
 - `git rebase -i --preserve-merges a8a018ddc0` - dropping the mistaken
   merge commit and its revert from that range (while keeping
   reapplication from 4effe769e2)
 - merging the last unaffected staging-next commit (803ca85c20)
 - fortunately no other commits have been pushed to staging-next yet
 - applying a diff on staging-next to get it into that state
2020-10-26 09:01:04 +01:00
AndersonTorres 846266d9af corectrl: init at 1.1.1 2020-10-25 23:11:40 -03:00
Kierán Meinhardt ea0d888242 vimv: init at unstable-2019-10-31 2020-10-25 19:13:20 +01:00
Vincent Laporte b5f396e43a ocamlPackages.mirage-net: init at 3.0.1 2020-10-25 16:02:34 +01:00
Frederik Rietdijk 89a60382e4 Revert "Revert "pythonPackages.django: clarify versions, remove django_lts attribute""
Every major version will have only a single LTS release, which is the
one we typically keep in Nixpkgs.

https://www.djangoproject.com/download/

This reverts commit af8a48c3c1.
2020-10-25 13:55:44 +01:00
Frederik Rietdijk af8a48c3c1 Revert "pythonPackages.django: clarify versions, remove django_lts attribute"
Fix eval.

This reverts commit 00d5a13322.
2020-10-25 13:44:02 +01:00
Vincent Laporte aa7977af2c ocamlPackages.mirage-bootvar-unix: init at 0.1.0 2020-10-25 11:09:43 +01:00
Vincent Laporte 8b2e5dcf27 ocamlPackages.parse-argv: init at 0.2.0 2020-10-25 11:09:43 +01:00
georgewhewell 53c52f1a45 kodi: remove jre override, use headless 2020-10-25 10:52:45 +01:00
Jonathan Strickland b775bc734e pinboard: init at 2.1.8 2020-10-25 10:29:53 +01:00
Ben Darwin 8e17389a56 graspy: rename to graspologic 2020-10-25 10:17:35 +01:00
Frederik Rietdijk 00d5a13322 pythonPackages.django: clarify versions, remove django_lts attribute
Every major version will have only a single LTS release, which is the
one we typically keep in Nixpkgs.

https://www.djangoproject.com/download/
2020-10-25 10:16:38 +01:00