Vladimír Čunát
cf8ad5efff
Merge #109242 : vorbis-tools: 1.4.0 -> 1.4.2
2021-02-06 14:59:52 +01:00
Scriptkiddi
b1a729198c
nixos/venus: Dropping package
2021-02-05 22:53:23 -08:00
Anderson Torres
ef6c06cc28
Merge pull request #112075 from AndersonTorres/labwc
...
labwc: init at 2021-01-12
2021-02-05 21:35:14 -03:00
Fabian Affolter
d8e5f408d5
python3Packages.pysma: init at 0.3.5
2021-02-05 23:04:14 +01:00
AndersonTorres
d3060cb33f
labwc: init at 2021-01-12
2021-02-05 18:56:20 -03:00
Michael Raskin
e248519cb9
Merge pull request #104003 from felschr/feat/etebase-server
...
etebase-server: init at 0.7.0
2021-02-05 21:37:34 +00:00
Michael Raskin
c3fbb346ae
Merge pull request #111887 from TredwellGit/libreoffice-fresh
...
libreoffice-fresh: 7.0.4.2 -> 7.1.0.3 & libreoffice-still: 6.3.5.2 -> 7.0.4.2
2021-02-05 19:45:25 +00:00
Sandro
72bfbe970b
Merge pull request #112017 from fortuneteller2k/add-flavours
...
flavours: init at 0.3.5
2021-02-05 18:54:56 +01:00
Jan Tojnar
493bbc968b
Merge pull request #95337 from pasqui23/switchctl
2021-02-05 18:05:39 +01:00
Sandro
c25f19bd15
Merge pull request #110887 from ccellado/yams
...
yams: init at 0.7.3
2021-02-05 17:53:55 +01:00
Pasquale
2d0ccc0ec0
switcheroo-control: init at 2.3
...
switcheroo-control: addded to package set
2021-02-05 17:39:44 +01:00
fortuneteller2k
e7d1e15f45
flavours: init at 0.3.5
2021-02-06 00:23:25 +08:00
Dmitry Kalinkin
580c2e4ec7
Merge pull request #112006 from holymonson/darwin-impure-cmds
...
Partial Revert "darwin: add impure-cmds"
2021-02-05 10:38:00 -05:00
Sandro
7e62cc7646
Merge pull request #112005 from lxea/maddy-init
2021-02-05 15:11:37 +01:00
Alex McGrath
6be9ca541a
maddy: init at 0.4.3
2021-02-05 14:01:41 +00:00
Sandro
39d6d4e5c8
Merge pull request #111849 from lopsided98/aioinflux-init
2021-02-05 11:47:37 +01:00
Monson Shao
7fc1c0c30f
Partial Revert "darwin: add impure-cmds"
...
This reverts part of commit ae8bd93c01c2ddaa598879478a35080cf21e4e3d.
2021-02-05 18:18:40 +08:00
Liam Diprose
b65b13fa8c
pythonPackages.aioinflux: init at 0.9.0
2021-02-04 18:57:32 -05:00
Sandro
9847d1368d
Merge pull request #111793 from oxalica/osu
...
osu-lazer: 2020.1225.0 -> 2021.129.0
2021-02-04 23:45:09 +01:00
NomisIV
71636409c3
gruvbox-dark-icons-gtk: init at 1.0.0
2021-02-04 14:17:20 -08:00
NomisIV
b05cb5f949
gruvbox-dark-gtk: init at 1.0.1
2021-02-04 14:17:20 -08:00
Sandro
a7a1a1f102
Merge pull request #111933 from thiagokokada/each-init
...
each: init at 0.1.3
2021-02-04 21:27:40 +01:00
Claudio Bley
b56ac70602
bazel_4: Use jdk11_headless to build bazel
...
Use the same JDK for building bazel and for its runtime.
Effectively, the former `toolchain_hostjdk8` java toolchain has been deprecated
and should no longer be used (in newer bazel)[1]:
```
default_java_toolchain(
name = "toolchain_hostjdk8",
...
)
```
[1]: 4fc4868065/tools/jdk/BUILD.tools (L384-L387)
2021-02-04 20:33:40 +01:00
Claudio Bley
b461c9e5bc
bazel_4: Fix build on darwin
...
* use default stdenv (clang 7)
* add no-arc.patch to make the xcode_locate tool compile without libarc-lite
* remove the `-mmacosx-version-min=10.9` flag from the bootstrap compile script
2021-02-04 20:31:43 +01:00
Dmitry Ivankov
0f5783f80a
bazel_4: init at 4.0.0
...
Bazel 4 is going to be a long term support release.
Latest version in NixPkgs so far was 3.3.1
There's a need for more recent version
https://github.com/NixOS/nixpkgs/issues/97497
All versions from 3.5.0 to 3.7.1 had some reproducibility issues
as noted in issue above, but there also seems to be
a working PR for 3.7.1 now at
https://github.com/NixOS/nixpkgs/pull/105439
Notable changes from bazel_3 setup:
- put python to default bash path
For autodetecting python toolchain
with strict action_env on and without this change
bazel would fail to autodetect host python.
There are some repos that define hermetic python
toolchains, but they aren't easy to use yet. Also
telling python paths to bazel isn't a 1-liner it
seems:
- action_env=PATH would affect cache
- declaring toolchain via BUILD&WORKSPACE files
is not per-user but more like per-repo and
affects cache too
Using python from nixpkgs shouldn't be too bad
in the lack of simpler hermetic python toolchain
options
- bazel_4.updater is bazel on `bazel query` to support
new constructs in WORKSPACE (load of vars, transitive
load etc). This is more robust but requires bazel
to run the updater, using bazel_3 for now. This is
only needed to bump package version, doesn't introduce
bazel_4 build dependency on bazel_3
https://blog.bazel.build/2020/11/10/bazel-4.0-announce.html
https://blog.bazel.build/2020/11/10/long-term-support-release.html
https://github.com/bazelbuild/bazel/issues/12455
https://github.com/bazelbuild/bazel/releases/tag/4.0.0
https://blog.bazel.build/2021/01/19/bazel-4-0.html
2021-02-04 20:24:54 +01:00
Sandro
70d71ec338
Merge pull request #107268 from rmcgibbo/rdkit
2021-02-04 20:18:00 +01:00
Sandro
8a4a984fd5
Merge pull request #105439 from avdv/bazel_3.7.1
2021-02-04 20:15:45 +01:00
Sandro
cb266f4b07
Merge pull request #111907 from primeos/isync
...
isync: 1.3.4 -> 1.4.0
2021-02-04 20:14:39 +01:00
Michael Weiss
d0b891c828
isync: 1.3.4 -> 1.4.0
...
Important changes:
- The 'isync' compatibility wrapper was removed.
- The Master/Slave configuration keywords where deprecated and should be
replaced with Far/Near. All users should update their configuration
file accordingly. It's a trivial change and the old Master/Slave
keywords will still work for now but result in the following message:
Notice: Master/Slave are deprecated; use Far/Near instead.
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-02-04 19:54:54 +01:00
Sandro
45b2a656fa
Merge pull request #111569 from fortuneteller2k/add-scientifica-font
2021-02-04 18:40:06 +01:00
Sandro
7f0ed95d2b
Merge pull request #111633 from dotlambda/libkeyfinder-2.2.4
2021-02-04 18:39:29 +01:00
Sandro
5bea0c357a
Merge pull request #111920 from OPNA2608/update/palemoon-29.0.0/21.03
...
palemoon: 28.17.0 -> 29.0.0, switch to gtk3
2021-02-04 18:18:07 +01:00
TredwellGit
14b1e4c71f
libreoffice-still: 6.3.5.2 -> 7.0.4.2
2021-02-04 17:14:27 +00:00
Thiago Kenji Okada
bc4d69ed00
each: init at 0.1.3
2021-02-04 12:18:31 -03:00
OPNA2608
7551dd16d4
palemoon: 28.17.0 -> 29.0.0, switch to gtk3
2021-02-04 14:24:12 +01:00
Martin Weinelt
dcf1583293
Merge pull request #111827 from fabaff/solax
...
python3Packages.solax: init at 0.2.5
2021-02-04 13:46:17 +01:00
Martin Weinelt
35fcd0461e
Merge pull request #111807 from fabaff/xboxapi
...
python3Packages.xboxapi: init at 2.0.1
2021-02-04 13:33:55 +01:00
oxalica
50707b3130
osu-lazer: 2020.1225.0 -> 2021.129.0
2021-02-04 20:27:29 +08:00
TredwellGit
f79e624ce6
libreoffice-fresh: 7.0.4.2 -> 7.1.0.3
...
https://wiki.documentfoundation.org/ReleaseNotes/7.1
2021-02-04 11:40:30 +00:00
Fabian Affolter
9445f43a69
python3Packages.xboxapi: init at 2.0.1
2021-02-04 08:49:24 +01:00
Martin Weinelt
a2ed0cc6d7
Merge pull request #111785 from mweinelt/home-assistant
...
home-assistant: 2021.1.5 -> 2021.2.0
2021-02-04 02:39:55 +01:00
Ben Wolsieffer
986a0c5d9a
linuxPackagesFor: fix overriding kernel attribute
...
The "kernel" argument to linuxPackagesFor was taking precedence over the
"self.kernel" attribute brought into scope by the "with self;" statement. This
prevented the makeExtensible machinery from working correctly when "kernel"
was overridden.
2021-02-03 20:31:22 -05:00
Martin Weinelt
3c93ee3c20
python3Packages.hijri-converter: init at 2.1.1
2021-02-04 02:09:56 +01:00
Martin Weinelt
8557a6e0c6
python3Packages.python-openzwave-mqtt: init at 1.4.0
2021-02-04 00:44:24 +01:00
Martin Weinelt
91f78faa40
python3Packages.asyncio-mqtt: init at 0.8.0
2021-02-04 00:44:24 +01:00
Fabian Affolter
82b980405e
python3Packages.solax: init at 0.2.5
2021-02-03 23:25:08 +01:00
Fabian Affolter
bc59568196
python3Packages.pytest-httpserver: init at 0.3.6
2021-02-03 23:20:34 +01:00
Sandro
c31388b6aa
Merge pull request #111757 from dotlambda/texworks-qt515
...
texworks: use Qt 5.15
2021-02-03 21:30:10 +01:00
Sandro
b6a71423d5
Merge pull request #111758 from dotlambda/rclone-browser-qt515
...
rclone-browser: use Qt 5.15
2021-02-03 21:28:59 +01:00
Robert T. McGibbon
8f1b6ae451
rdkit: init at 2020.09.3
2021-02-03 15:10:25 -05:00
Robert T. McGibbon
4bbdff14c8
coordgenlibs: init at 1.4.2
2021-02-03 15:10:25 -05:00
Robert T. McGibbon
947ccc54ae
maeparser: init at 1.2.4
2021-02-03 15:10:25 -05:00
Anderson Torres
8bf1bc692c
Merge pull request #110512 from neosimsim/agda-dont-install-Everything
...
Agda don't install Everything module
2021-02-03 15:56:34 -03:00
Fabian Affolter
84210a8538
python3Packages.pysyncobj: init at 0.3.7
2021-02-03 10:52:46 -08:00
06kellyjac
11bae6e9fb
agate: init at 2.3.0
2021-02-03 18:38:46 +00:00
Sandro
77da66eb12
Merge pull request #111734 from stigtsp/perl/email-stuffer-init
...
perlPackages.EmailStuffer: init at 0.018
2021-02-03 19:04:29 +01:00
Sandro
7750e6a2c9
Merge pull request #111621 from OPNA2608/refactor/rtaudio_rtmidi/21.03
2021-02-03 18:13:01 +01:00
Sandro
5068ddfc42
Merge pull request #111728 from petabyteboy/feature/pylxd
...
python3Packages.pylxd: init at 2.3.0
2021-02-03 18:12:28 +01:00
Sandro
0829a51862
Merge pull request #109626 from holymonson/darwin-impure-cmds
...
darwin: add impure-cmds
2021-02-03 18:11:58 +01:00
adisbladis
a2a05d2bfe
nixopsUnstable: 1.7pre2764_932bf4 -> 2.0.0-pre
2021-02-03 16:03:03 +01:00
Robert Schütz
b2e5c48ab3
texworks: use Qt 5.15
2021-02-03 15:28:45 +01:00
Robert Schütz
59ef9e5a16
rclone-browser: use Qt 5.15
2021-02-03 14:50:58 +01:00
Sandro
5c7a370a20
Merge pull request #111685 from humancalico/dotenv-linter
2021-02-03 14:50:27 +01:00
Sandro
9a15b4dd19
Merge pull request #111697 from AndersonTorres/chemtool
2021-02-03 14:45:50 +01:00
OPNA2608
6c22ff0654
rtaudio: refactor
2021-02-03 14:40:08 +01:00
OPNA2608
d8262fc7fb
rtmidi: refactor
2021-02-03 14:40:07 +01:00
AndersonTorres
7e481eed2d
chemtool: init at 1.6.14
2021-02-03 08:48:32 -03:00
Sandro
2f79819ce2
Merge pull request #111273 from numinit/armagetronad
2021-02-03 11:45:48 +01:00
Milan Pässler
790a3f4407
python3Packages.pylxd: init at 2.3.0
2021-02-03 11:20:27 +01:00
Stig Palmquist
ed451f314e
perlPackages.EmailStuffer: init at 0.018
2021-02-03 11:03:28 +01:00
Claudio Bley
5f71a0ff5d
bazel: Fix build on darwin
...
* use default stdenv (clang 7)
* add no-arc.patch to make the xcode_locate tool compile without libarc-lite
* remove the `-mmacosx-version-min=10.9` flag from the bootstrap compile script
2021-02-03 10:46:09 +01:00
Claudio Bley
e22cf98520
bazel: Use jdk11_headless to build bazel
...
Use the same JDK for building bazel and for its runtime.
Effectively, the former `toolchain_hostjdk8` java toolchain has been deprecated
and should no longer be used (in newer bazel)[1]:
```
# Deprecated, do not use.
# It will be removed after migration to Java toolchain resolution.
default_java_toolchain(
name = "toolchain_hostjdk8",
...
)
```
[1]: 4fc4868065/tools/jdk/BUILD.tools (L384-L387)
2021-02-03 10:46:09 +01:00
Morgan Jones
833ccbaf63
armagetronad-dedicated: init at 0.2.9.1.0
2021-02-03 00:47:57 -07:00
Mikhail Klementev
c523108906
python3Packages.keystone-engine: init at 0.9.2
2021-02-02 23:00:52 -08:00
Akshat Agarwal
61947bee3f
dotenv-linter: init at 3.0.0
2021-02-03 05:33:22 +05:30
Stevan Andjelkovic
bf6df7187e
graalvm-ce-20.2.0 -> 20.3.0 + darwin support. ( #105815 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-02-02 23:16:43 +01:00
Tom McLaughlin
1d4dec4021
tmux-mem-cpu-load: init at 3.4.0 ( #111609 )
2021-02-02 22:39:14 +01:00
Sandro
e9876afb9c
Merge pull request #109414 from rgrunbla/galene
...
galene: init at 0.2
2021-02-02 20:00:09 +01:00
Sandro
c13dc4a5d5
Merge pull request #111638 from jollheef/cmsis-svd
...
python3Packages.cmsis-svd: init at 0.4
2021-02-02 19:57:56 +01:00
Sandro
ad29e42225
Merge pull request #111366 from tu-maurice/unstable/fishnet-2.2.3
...
fishnet: init at 2.2.3
2021-02-02 19:50:13 +01:00
Alyssa Ross
8bad690603
autoreconfHook: make overridable
...
Some packages have specific autotools requirements that don't apply to
any other packages. We want to be able to use autoreconfHook for
these packages with the required autotools versions, but we don't want
to have to makeSetupHook for each one, or have a top-level attribute
for every combination.
So, use callPackage around the makeSetupHook call so that the
autotools used by autoreconfHook can be overridden. This way, a
custom autoreconfHook can be passed to a package like this:
autoreconfHook = with buildPackages;
autoreconfHook.override { automake = automake115x; };
And we can simplify the definitions of our existing autoreconfHook264
and autoreconfHook269 attributes.
2021-02-02 17:14:29 +00:00
Robert Schütz
f1bbe7f29e
keyfinder-cli: don't use libsForQt5
...
This is not a Qt application and libkeyfinder is now available globally.
2021-02-02 17:36:08 +01:00
Robert Schütz
4430bf6498
libkeyfinder: 2.1 -> 2.2.4
...
Also move to all-packages.nix since it does not use qmake anymore.
2021-02-02 17:36:08 +01:00
Robert Schütz
a4db89997b
untrunc: make alias of untrunc-anthwlock
...
The latter has more features and doesn't depend on an outdated version
of libav.
2021-02-02 17:26:36 +01:00
Felix Tenley
211cbfdb13
etebase-server: init at 0.7.0
2021-02-02 17:13:50 +01:00
Felix Tenley
5db1ef1e53
pythonPackages.drf-nested-routeres: init at 0.92.5
2021-02-02 17:13:49 +01:00
Sandro
c63f0ffed8
Merge pull request #111646 from SuperSandro2000/fix-collection7
2021-02-02 16:29:56 +01:00
Pasquale
a98090337f
zinit: 2.3 -> 3.7
2021-02-02 15:25:02 +01:00
Sandro
add90df40f
Merge pull request #111405 from kf5grd/gomacro
2021-02-02 15:19:19 +01:00
Sandro Jäckel
b3850ac9d4
pythonPackages.exdown: Init at 0.7.1
2021-02-02 14:46:05 +01:00
Mikhail Klementev
ab2f1e78cd
python3Packages.cmsis-svd: init at 0.4
2021-02-02 12:45:21 +00:00
Daniël de Kok
f247846274
Merge pull request #111637 from rasendubi/planner-remove
...
planner: remove
2021-02-02 11:58:35 +01:00
taku0
4ceb20b49b
Merge pull request #107167 from matthiasbeyer/init-tageditor
...
tageditor: init at 3.3.10, tagparser: init at 9.4.0
2021-02-02 19:18:29 +09:00
Alexey Shmalko
8d5b2d3dfd
planner: remove
2021-02-02 10:53:54 +02:00
sternenseemann
f31d62b49e
ocamlPackages.semaphore-compat: init at 1.0.1
2021-02-02 08:34:06 +01:00
Anderson Torres
eca54e37ae
Merge pull request #111615 from AndersonTorres/waybox
...
waybox: init at unstable-2020-05-01
2021-02-02 00:50:03 -03:00
AndersonTorres
f5e4a32d4b
waybox: init at unstable-2020-05-01
2021-02-01 21:36:46 -03:00
Sandro
995e8c122f
Merge pull request #111544 from mweinelt/gobby
2021-02-02 00:47:30 +01:00
Sandro
2e7a585be3
Merge pull request #111600 from Luflosi/simplify-binwalk
...
binwalk: simplify visualizationSupport code
2021-02-02 00:44:43 +01:00
Sandro
3402175d3f
Merge pull request #111151 from 06kellyjac/boundary
...
boundary: init at 0.1.4
2021-02-02 00:40:44 +01:00
Sandro
d21b1b26a1
Merge pull request #111396 from twhitehead/ovito
...
ovito: init at 3.4.0
2021-02-02 00:38:43 +01:00
Sandro
dab863e0d1
Merge pull request #108794 from wamserma/ossf-criticality-score
...
pythonPackages.criticality-score: init at 1.0.7
2021-02-02 00:31:40 +01:00
Jan Tojnar
27689bf551
Merge pull request #111597 from jtojnar/ligda6
2021-02-01 21:06:08 +01:00
Jan Tojnar
4d77a1ef39
libgda6: init at 6.0.0
...
https://blogs.gnome.org/despinosa/2021/01/31/gnome-data-access-6-0-released/
https://gitlab.gnome.org/GNOME/libgda/-/blob/LIBGDA_6_0_0/NEWS#L1-92
2021-02-01 20:14:51 +01:00
Sandro
ccda8c669f
Merge pull request #110809 from justinas/init-ijq
...
ijq: init at 0.2.3
2021-02-01 20:06:53 +01:00
Sandro
1c51dd2964
Merge pull request #110810 from IvarWithoutBones/yuzu-{mainline,ea}
2021-02-01 19:47:12 +01:00
tu-maurice
b7d912894c
fishnet: init at 2.2.3
2021-02-01 19:26:18 +01:00
Luflosi
1ca5d3117c
binwalk: simplify visualizationSupport code
2021-02-01 19:22:21 +01:00
Sandro
e1cc38d6f7
Merge pull request #111483 from fabaff/bump-cachetools
2021-02-01 19:20:25 +01:00
Pavol Rusnak
7d803a4305
Merge pull request #107169 from matthiasbeyer/init-cjson
...
cjson: init at 1.7.14
2021-02-01 19:04:36 +01:00
Matthias Beyer
5c33074660
cjson: init at 1.7.14
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-02-01 18:23:23 +01:00
Sandro
cd590bdc1e
Merge pull request #111576 from fabaff/htmltest
...
htmltest: init at 0.14.0
2021-02-01 18:21:18 +01:00
Justinas Stankevicius
63a6651bf7
ijq: init at 0.2.3
2021-02-01 18:46:43 +02:00
Tyson Whitehead
6873dc2341
ovito: init at 3.4.0
2021-02-01 11:43:16 -05:00
Jan Tojnar
54f4529aec
Merge pull request #111519 from siraben/xdg-utils-naming
2021-02-01 17:18:57 +01:00
fortuneteller2k
1b0a3444ca
scientifica: init at v2.1
2021-02-02 00:14:50 +08:00
Sam Hofius
be212428d3
gomacro: init at 2.7
2021-02-01 11:12:16 -05:00
Alexander Bantyev
c8183d4d25
Merge pull request #111158 from jollheef/pylink-square
...
python3Packages.pylink-square: init at 0.8.1
2021-02-01 18:57:07 +03:00
Markus S. Wamser
26573de80c
pythonPackages.criticality_score: init at 1.0.7
2021-02-01 16:43:00 +01:00
Fabian Affolter
68a21b03cd
htmltest: init at 0.14.0
2021-02-01 16:14:56 +01:00
sternenseemann
6a27377958
ocamlPackages.cstruct: 5.0.0 → 6.0.0
2021-02-01 16:11:29 +01:00
Matthias Beyer
ab1f4bc5c6
tageditor: init at 3.3.10
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-02-01 15:25:02 +01:00
Matthias Beyer
aeab74df01
tagparser: init at 9.4.0
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-02-01 15:25:01 +01:00
Patrick Hilhorst
f72f55f690
python3Packages.panflute: init at 2.0.5 ( #111463 )
2021-02-01 14:41:48 +01:00
Ben Siraphob
7c3ecc34dd
move xdg_utils to alises.nix
2021-02-01 20:21:31 +07:00
06kellyjac
6a19b8547a
boundary: init at 0.1.4
2021-02-01 13:13:31 +00:00
Aaron Andersen
28bbe671a0
Merge pull request #111317 from talyz/php-xmlreader-dom
...
php.extensions.xmlreader: Add internal dependency on `dom`
2021-02-01 08:12:26 -05:00
Sandro
120a7279e5
Merge pull request #111416 from bb2020/gimx
2021-02-01 13:16:58 +01:00
Jörg Thalheim
aba5be8be2
Merge pull request #111543 from Mic92/sops-nix
...
ssh-to-pgp: init at 1.0.0
2021-02-01 11:43:29 +00:00
Sandro
da0d1a324f
Merge pull request #109393 from attila-lendvai/attila-bee.master
2021-02-01 12:37:36 +01:00
Jörg Thalheim
0d7fbbe1d6
ssh-to-pgp: init at 1.0.0
...
This is needed for onboarding sops-nix.
2021-02-01 12:10:54 +01:00
Martin Weinelt
2e29d7105d
gobby: rename from gobby5
...
The attribute was initially renamed in ef403beb
this way due to
incompatibilities between versions 0.4.x and 0.5.x back in 2010.
Additionally it hinders intuitive discovery of the package, because the
versioned package name is nothing a user would guess.
As we are moving to 0.6.0 this makes little sense anymore.
2021-02-01 11:38:23 +01:00
Fabian Affolter
bcc3ab1d37
python3Packages.cachetools: remove cachetools_2
2021-02-01 11:08:48 +01:00
Attila Lendvai
3f144583c9
bee-clef: init at 0.4.7
2021-02-01 10:55:58 +01:00
Attila Lendvai
0dc5f1f6d6
bee: init at 0.4.2
2021-02-01 10:55:01 +01:00
bb2020
9fcc211220
gimx: init at 8.0
2021-02-01 12:28:48 +03:00
Oleksii Filonenko
f5daa8ab31
Merge pull request #111524 from peterhoeg/f/scry
2021-02-01 11:19:16 +02:00
Peter Hoeg
91e0754653
scry: 0.8.1 -> unstable-2020-09-02
...
Makes it build with 0.35.
2021-02-01 16:33:26 +08:00
Ben Siraphob
a6ac3eedbd
treewide: xdg_utils -> xdg-utils
2021-02-01 15:05:09 +07:00
Sandro
7b7556a41f
Merge pull request #110565 from urbas/gradient-sdk-renamed
2021-02-01 08:42:54 +01:00
Graham Christensen
86d5d9650d
Merge pull request #111413 from dotlambda/vorta-0.7.2
...
vorta: 0.7.1 -> 0.7.2
2021-01-31 20:56:27 -05:00
Andreas Rammhold
44b07653bd
gtk4: init at 4.0.2
...
Major API change; adds multimedia and 3D graphics widgets.
Changes:
- https://gitlab.gnome.org/GNOME/gtk/-/blob/4.0.2/NEWS
- https://blog.gtk.org/2020/12/16/gtk-4-0/
Co-authored-by: Jan Tojnar <jtojnar@gmail.com>
Co-authored-by: Tad Fisher <tadfisher@gmail.com>
2021-01-31 22:22:14 +01:00
Sandro
ba64d090c4
Merge pull request #100989 from risicle/ris-turion-cassandra-driver
2021-01-31 21:21:13 +01:00
Sandro
b647967322
Merge pull request #111299 from SCOTT-HAMILTON/nikto
...
nikto: init at 2.2.0
2021-01-31 19:41:32 +01:00
Sandro
0ebabc7057
Merge pull request #111482 from risicle/ris-cloudfoundry-cli-7.2.0
2021-01-31 19:32:39 +01:00
Sandro
9e81867a53
Merge pull request #111355 from fabaff/libwebsockets
2021-01-31 19:13:14 +01:00
Robert Schütz
621342dec9
vorta: 0.7.1 -> 0.7.2
2021-01-31 18:54:12 +01:00
Matej Urbas
dc00214974
python3Packages.gradient: renamed from paperspace
2021-01-31 17:51:05 +00:00
Matej Urbas
cb96308934
python3Packages.halo: init at 0.0.31
2021-01-31 17:51:05 +00:00
Matej Urbas
ea0edd8e8b
python3Packages.spinners: init at 0.0.24
2021-01-31 17:51:02 +00:00