Sandro
fffe30c22a
Merge pull request #96609 from sikmir/lsd2dsl
...
lsd2dsl: 0.5.1 -> 0.5.2
2020-11-27 03:06:23 +01:00
Sandro
81fb32ae0b
Merge pull request #101049 from sarcasticadmin/sa/init-goreleaser
2020-11-27 02:10:22 +01:00
Sandro
1754f25ec7
Merge pull request #101455 from sdier/igmpproxy-package
...
igmpproxy: init at version 0.2.1
2020-11-27 01:59:40 +01:00
Sandro
6ecdb286b0
Merge pull request #101464 from Synthetica9/redirected-urls
...
treewide: ran ./maintainers/scripts/update_redirected_urls.sh
2020-11-27 01:27:24 +01:00
Patrick Hilhorst
a6b3bb24e4
treewide: ran ./maintainers/scripts/update_redirected_urls.sh
2020-11-27 01:23:57 +01:00
Sandro
bd1de18f6c
Merge pull request #101765 from siraben/ncrack-init
...
ncrack: init at 0.7
2020-11-27 01:17:12 +01:00
Sandro
e0c7219ed1
Merge pull request #101865 from Preisschild/jsonnet-bundler/init
2020-11-27 00:29:22 +01:00
Sandro
80da379db7
Merge pull request #101831 from siraben/snow-init
...
snow: init at 20130616
2020-11-27 00:27:25 +01:00
Sandro
7aa23895ab
Merge pull request #101822 from siraben/exifprobe-init
2020-11-27 00:14:15 +01:00
Sandro
b1cff045d6
Merge pull request #100521 from SuperSandro2000/python-libsass
...
pythonPackages.libsass: init at 0.20.1
2020-11-26 23:02:31 +01:00
Jan Tojnar
bb368b77fd
Merge pull request #104908 from con-f-use/init_mcomix3
2020-11-26 22:17:10 +01:00
Frank Doepper
05440fda6f
shotcut: use qt-5.15, rework
...
- use qt-5.15 for shotcut
- use qt mkDerivation for mlt/qt5
- use only mlt/qt5 for shotcut (libmlt -> mlt.dev)
- fix enabling ladspa (configure needs `which`), closes #47440
2020-11-26 21:35:14 +01:00
Emery Hemingway
bb7b1b59c8
nim: include nimble utility with wrapped compiler
2020-11-26 20:06:20 +01:00
freezeboy
fdad84f092
tautulli: 2.2.4 -> 2.6.1
2020-11-26 20:04:07 +01:00
con-f-use
a94fd94d5c
mcomix3: init at 20201123
...
closes #75028
2020-11-26 19:26:43 +01:00
sternenseemann
f8bab20f01
ocamlPackages.ocaml-migrate-parsetree: 1.7.3 -> 1.8.0
2020-11-26 16:07:18 +01:00
Silvan Mosberger
86f4de6ee9
release-lib: Don't use tryEval for packagePlatforms
...
This use of tryEval causes hydra to fully ignore evaluation failures of
packages that occur while trying to evaluate the hydra platforms it should be
built on. This includes failures that occur during evaluation of:
- The `.type` attribute value
- The `.meta.hydraPlatforms` or `.meta.platforms` attribute value
- The `.version` attribute, since this can determine whether
`.meta.position` is set
- For non-derivations, `.recurseForDerivations` or `.recurseForRelease`
Here's a minimal `release.nix` file, showcasing how a `.version` failure
is ignored:
let
packages = pkgs: {
success = pkgs.stdenv.mkDerivation {
name = "success";
};
ignoredFailure = pkgs.stdenv.mkDerivation {
pname = "ignored-failure";
version = throw "version error";
};
caughtFailure = pkgs.stdenv.mkDerivation {
name = "caught-failure";
src = throw "src error";
};
};
releaseLib = import <nixpkgs/pkgs/top-level/release-lib.nix> {
packageSet = args: packages (import <nixpkgs> args);
supportedSystems = [ "x86_64-linux" ];
};
in
releaseLib.mapTestOn (releaseLib.packagePlatforms releaseLib.pkgs)
Evaluating this with `hydra-eval-jobs` before this change yields:
$ hydra-eval-jobs release.nix -I nixpkgs=/path/to/nixpkgs
warning: `--gc-roots-dir' not specified
error: "error: --- ThrownError --- hydra-eval-jobs\nsrc error"
{
"caughtFailure.x86_64-linux": {
"error": "error: --- ThrownError --- hydra-eval-jobs\nsrc error"
},
"success.x86_64-linux": {
"description": "",
"drvPath": "/nix/store/q1sw933xd9bxfx6rcp0kqksbprj1wmwj-success.drv",
"homepage": "",
"isChannel": false,
"license": "",
"maintainers": "",
"maxSilent": 7200,
"nixName": "success",
"outputs": {
"out": "/nix/store/7awrz6hss4jjxvgbwi4wlyikncmslb7a-success"
},
"schedulingPriority": 100,
"system": "x86_64-linux",
"timeout": 36000
}
}
Where you can see that there is no job for the `ignoredFailure`
derivation. Compare this to after this change:
$ hydra-eval-jobs release.nix -I nixpkgs=/path/to/nixpkgs
warning: `--gc-roots-dir' not specified
error: "error: --- ThrownError --- hydra-eval-jobs\nsrc error"
error: "error: --- ThrownError --- hydra-eval-jobs\nversion error"
{
"caughtFailure.x86_64-linux": {
"error": "error: --- ThrownError --- hydra-eval-jobs\nsrc error"
},
"ignoredFailure": {
"error": "error: --- ThrownError --- hydra-eval-jobs\nversion error"
},
"success.x86_64-linux": {
"description": "",
"drvPath": "/nix/store/q1sw933xd9bxfx6rcp0kqksbprj1wmwj-success.drv",
"homepage": "",
"isChannel": false,
"license": "",
"maintainers": "",
"maxSilent": 7200,
"nixName": "success",
"outputs": {
"out": "/nix/store/7awrz6hss4jjxvgbwi4wlyikncmslb7a-success"
},
"schedulingPriority": 100,
"system": "x86_64-linux",
"timeout": 36000
}
}
Notice how `ignoredFailure` is now part of the result.
2020-11-26 15:32:08 +01:00
Sandro
9c6a75e379
Merge pull request #103037 from lightdiscord/package-update/protonmail-bridge
2020-11-26 15:05:23 +01:00
Sandro Jäckel
040f04d39b
wsl-open: init at 2.1.1
2020-11-26 14:39:32 +01:00
Jan Tojnar
acfc45bacc
wrapGAppsNoGuiHook: init
2020-11-26 14:06:07 +01:00
Sandro
9f36dd3d66
Merge pull request #104528 from urbas/feature/coapthon3
2020-11-26 13:32:24 +01:00
freezeboy
bab529c9ff
linuxPackages.akvcam: init at 1.1.1
2020-11-26 13:06:35 +01:00
StigP
5e70725451
Merge pull request #104974 from zakame/contrib/perl-Command-Runner
...
perlPackages.CommandRunner: init at 0.103
2020-11-26 12:44:19 +01:00
StigP
cde94d8515
Merge pull request #104975 from zakame/contrib/perl-Parallel-Pipes
...
perlPackages.ParallelPipes: init at 0.005
2020-11-26 12:40:29 +01:00
Zak B. Elep
c8251d458e
perlPackages.CommandRunner: init at 0.103
2020-11-26 19:11:44 +08:00
Zak B. Elep
707abc0fbe
perlPackages.ParallelPipes: init at 0.005
2020-11-26 19:10:43 +08:00
Doron Behar
c012b79c04
mympd: init at 6.8.1
2020-11-26 11:34:41 +02:00
Sandro
d39981eabc
Merge pull request #99978 from bbigras/envchain
...
envchain: init at 1.0.1
2020-11-26 09:18:04 +01:00
Sandro
8585991bfb
Merge pull request #100758 from SuperSandro2000/git-delete-merged-branches
2020-11-26 03:52:46 +01:00
Sandro Jäckel
c2211b2d7a
pythonPackages.libsass: init at 0.20.1
2020-11-26 03:50:39 +01:00
Sandro
e56bfa41e8
Merge pull request #99283 from siraben/genkfs-init
...
knightos-genkfs: init at 1.3.2
2020-11-26 03:21:57 +01:00
Sandro
437cc302b9
Merge pull request #102442 from formbay/imantics
...
pythonPackages.imantics: init at 0.1.12
2020-11-26 03:11:37 +01:00
Sandro
0677e4efbf
Merge pull request #102271 from symphorien/check-systemd
...
check_systemd: init at 2.2.1
2020-11-26 02:56:13 +01:00
Sandro
605ecee7de
Merge pull request #102200 from hjones2199/master
...
phd2: init at 2.6.9dev1
2020-11-26 02:28:06 +01:00
Sandro
b5edb50fe7
Merge pull request #101774 from contrun/sftpman
...
sftpman: init at 1.1.3
2020-11-26 02:10:09 +01:00
Sandro
97cce3214f
Merge pull request #103884 from djanatyn/pkg/xlife
2020-11-26 01:55:25 +01:00
Sandro
27a7098174
Merge pull request #101868 from luc65r/pkg/fasmg
...
fasmg: init at j27m
2020-11-26 01:49:56 +01:00
adisbladis
86caffc411
rnnoise-plugin: Deduplicated package
...
This was packaged twice by mistake.
2020-11-26 01:38:04 +01:00
Sandro
91e2677267
Merge pull request #102352 from evax/ppscore-1.1.1
...
python3Packages.ppscore: init at 1.1.1
2020-11-26 00:44:00 +01:00
Symphorien Gibol
590aa37109
check_systemd: init at 2.2.1
...
and remove pynagsystemd, which it replaces.
2020-11-25 22:48:39 +01:00
Sandro
1dde9c5aaa
Merge pull request #91182 from Patryk27/pcloud
...
pcloud: Init at 1.8.8
2020-11-25 22:21:18 +01:00
Jack Cummings
d402d913d7
bluespec: unstable-2020.02.09 -> unstable-2020.11.04
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2020-11-25 10:06:35 -06:00
Bruno Bigras
dc83d21140
envchain: init at 1.0.1
...
Co-authored-by: Jon <jonringer@users.noreply.github.com>
Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>
Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
2020-11-25 10:44:05 -05:00
tomberek
ac0ac4fe51
dydisnix: init at unstable ( #49366 )
...
* dydisnix: init at unstable-2018-04-26
updated with suggestions from @xeji
* Update pkgs/tools/package-management/disnix/dydisnix/default.nix
Co-Authored-By: Ryan Mulligan <ryan@ryantm.com>
* Add dydisxnix and libnixxml
Co-authored-by: Ryan Mulligan <ryan@ryantm.com>
Co-authored-by: Tom Bereknyei <tom@rebelliondefense.com>
2020-11-25 07:27:28 -08:00
Maximilian Bosch
6cd3c538c7
Merge pull request #104262 from Vonfry/fix/pass
...
pass: separate dmenu from x11Support
2020-11-25 14:32:02 +01:00
Edward Tjörnhammar
bee90bae9a
perlPackages.TermReadPassword: init at 0.11
2020-11-25 14:27:33 +01:00
Ben Siraphob
04b7c0aff7
knightos-genkfs: init at 1.3.2
2020-11-25 19:12:46 +07:00
luc65r
8b91055223
fasmg: init at j27m
2020-11-25 11:48:59 +01:00
Vonfry
118695a350
pass: seperate dmenu from x11Support
2020-11-25 18:44:18 +08:00
freezeboy
3533c4f517
droopy: remove macpath to migrate to py3.8
2020-11-25 10:45:53 +01:00
Vincent Laporte
254f2bad97
ocaml-ng.ocamlPackages_4_12.ocaml: init at 4.12.0-α1
2020-11-25 07:55:44 +01:00
Rakesh Gupta
daff289820
pythonPackages.imantics: init at 0.1.12
2020-11-25 12:20:46 +05:30
Hunter Jones
d14952311e
phd2: init at 2.6.9dev1
2020-11-24 21:31:58 -06:00
Sandro
9999a08954
Merge pull request #102463 from evax/mlxtend-0.17.3
...
python3Packages.mlxtend: init at 0.17.3
2020-11-25 03:25:29 +01:00
Sandro
1406e32022
Merge pull request #102440 from formbay/xmljson
...
pythonPackages.xmljson: init at 0.2.1
2020-11-25 03:11:27 +01:00
Nicolas Martin
ff7f34e7bf
img-cat: init at 1.2.0
2020-11-25 02:55:05 +01:00
Silvan Mosberger
bb59f101e5
Merge pull request #99688 from kylesferrazza/fix-99637
...
multilockscreen: init at 1.0.0
2020-11-25 01:51:57 +01:00
Sandro
ea49bac768
Merge pull request #99761 from fgaz/key/init
...
key: init at 2.6.3
2020-11-25 01:49:25 +01:00
Sandro
9e64251902
Merge pull request #102729 from evax/shap-0.36.0
...
python3Packages: init shap at 0.36.0
2020-11-25 01:16:07 +01:00
Sandro
2ab19d9aca
Merge pull request #102846 from lukegb/python-emv
...
python3Packages.emv: init at 1.0.11
2020-11-25 00:41:05 +01:00
Sandro
77d45b8609
Merge pull request #99426 from jonringer/add-catfs
...
catfs: init at unstable-2020-03-21
2020-11-24 23:40:19 +01:00
Sandro
e4490f9313
Merge pull request #102147 from mmahut/versus
...
versus: init at 1.0
2020-11-24 23:05:54 +01:00
Sandro Jäckel
bffb773018
python3Packages.phx-class-registry: init at 3.0.5
2020-11-24 22:38:06 +01:00
Graham Christensen
d9c3f13df3
Merge pull request #104776 from grahamc/utillinux
...
utillinux: rename to util-linux
2020-11-24 15:14:36 -05:00
Michael Weiss
4e721164a8
wlsunset: init at 0.1.0 ( #103606 )
2020-11-24 19:44:52 +01:00
Dmitry Kalinkin
b70bbd9319
Merge pull request #104687 from Luflosi/nextpnr-unpin-qt-version
...
nextpnr: unpin Qt version
2020-11-24 13:32:26 -05:00
Merkhad Luigton
3ebd278b2e
ghc8102: bootstrap with ghc8102BinaryMinimal on aarch32
...
ghc refuses to evaluate on armhf even tho ghc does provide binaries for the arch
2020-11-24 15:30:24 -03:00
Graham Christensen
bc49a0815a
utillinux: rename to util-linux
2020-11-24 12:42:06 -05:00
Dave Anderson
4de5d2b081
influxdb2: init at v2.0.2 ( #104717 )
...
Signed-off-by: David Anderson <dave@natulte.net>
2020-11-24 16:06:39 +01:00
Milan Pässler
9eb79c42eb
rust: 1.47 -> 1.48
2020-11-24 09:26:47 +01:00
Jan Tojnar
6d99109b12
Merge branch 'staging-next' into staging
2020-11-24 05:44:44 +01:00
adisbladis
6847a5c12d
referencesByPopularity: Don't use buildPackages at call-site
...
It's cleaner to reference buildPackages directly in
build-support/docker directly.
2020-11-24 02:55:40 +01:00
adisbladis
c3e79669db
referencesByPopularity: Fix cross compilation
2020-11-24 02:05:11 +01:00
Florian Klink
bbf3c9483b
Merge pull request #104520 from Izorkin/wsdd
...
wsdd: init at 0.6.2
2020-11-23 23:18:23 +01:00
Sandro
8b65b642b1
Merge pull request #103227 from Mazurel/master
2020-11-23 23:09:50 +01:00
Sandro
edcd5cc798
Merge pull request #103253 from StephenWithPH/add-las-tools
2020-11-23 22:56:56 +01:00
Daiderd Jordan
28039d8f56
py-spy: init at 0.3.3
2020-11-23 22:51:33 +01:00
Sandro
4b481d9b9f
Merge pull request #102516 from NieDzejkob/sumtypes
...
pythonPackages.sumtypes: init at 0.1a5
2020-11-23 22:26:14 +01:00
Graham Christensen
fbc4af5725
Revert "influxdb2: init at v2.0.2 ( #104484 )"
...
This reverts commit ecbe92e576
.
2020-11-23 14:55:26 -05:00
Dave Anderson
ecbe92e576
influxdb2: init at v2.0.2 ( #104484 )
...
Signed-off-by: David Anderson <dave@natulte.net>
2020-11-23 20:40:42 +01:00
freezeboy
d38656bc48
obs-ndi: migrate to Qt5.15
2020-11-23 20:36:03 +01:00
freezeboy
66be617434
mellowplayer: migrate to Qt5.15
2020-11-23 20:35:41 +01:00
Ryan Mulligan
8d12c667ff
Merge pull request #93176 from oxalica/init/swapview
...
swapview: init at 0.1.0
2020-11-23 11:24:59 -08:00
Sandro
b2219a326b
Merge pull request #101922 from penguwin/nextinspace
...
nextinspace: init at 1.0.6
2020-11-23 20:09:09 +01:00
Luflosi
0f8801c893
nextpnr: unpin Qt version
...
The current version of nextpnr works fine with the latest QT version.
It was pinned to Qt 5.14 in 22167ae45f
.
2020-11-23 19:22:19 +01:00
Sandro
8c24e6eb99
Merge pull request #103363 from bbigras/chars
...
chars: init at 0.5.0
2020-11-23 19:18:30 +01:00
Frederik Rietdijk
587538d087
Merge staging-next into staging
2020-11-23 18:10:33 +01:00
Jörg Thalheim
816009490e
Merge pull request #104478 from Mic92/opencv
2020-11-23 17:51:33 +01:00
Raghav Sood
0a90b97fc2
Merge pull request #101048 from evanjs/imgbrd-grabberd/init
...
imgbrd-grabber: init at 7.3.2
2020-11-23 16:12:28 +00:00
06kellyjac
fb3f81ba12
starboard-octant-plugin: init at 0.4.0
2020-11-23 15:07:06 +00:00
Bernardo Meurer
b543ade350
pythonPackages.psycopg2cffi: init at 2.8.1
2020-11-23 07:05:26 -08:00
freezeboy
cfba07ba04
supercollider: 3.11.0 -> 3.11.2
2020-11-23 06:53:35 -08:00
georgewhewell
9f2cc6f478
pythonPackages.pyro-api: init at 0.1.1
2020-11-23 06:51:08 -08:00
freezeboy
891863830d
python3Packages.yamlloader: init at 0.5.5
2020-11-23 06:33:53 -08:00
freezeboy
33c26604ae
python3Packages.nocasedict: init at 1.0.1
2020-11-23 06:33:53 -08:00
freezeboy
eaf730c4f8
python3Packages.nocaselist: init at 1.0.3
2020-11-23 06:33:53 -08:00
Sandro
1a5ce6ff2b
Merge pull request #102093 from ymeister/master
2020-11-23 15:16:35 +01:00
Domen Kožar
5b6aeb1b92
Merge pull request #104597 from zupo/master
...
Add pgweb, a light and fast web-based PostgreSQL database browser
2020-11-23 14:53:58 +01:00
Sandro
b1a729fbed
Merge pull request #104140 from thefloweringash/tcpreplay-darwin
...
tcpreplay: fix darwin build
2020-11-23 14:29:14 +01:00
StigP
b465f8e99b
Merge pull request #104663 from stigtsp/package/perl-anyevent-aio-init
...
perlPackages.AnyEventAIO: init at 1.1
2020-11-23 14:17:06 +01:00
Stig Palmquist
a9f18c5783
perlPackages.AnyEventAIO: init at 1.1
2020-11-23 12:48:42 +01:00
Stig Palmquist
d17400d335
perlPackages.IOAIO: init at 4.72
2020-11-23 12:48:27 +01:00
Sandro
214cd89762
Merge pull request #104126 from mweinelt/snallygaster
...
snallygaster: init at 0.0.9
2020-11-23 12:27:30 +01:00
Sandro
35d1a8d559
Merge pull request #102497 from IvarWithoutBones/nuclear-0.6.6
...
nuclear: init at 0.6.6
2020-11-23 12:15:41 +01:00
Matej Urbas
f85ea6e08d
python3Packages.coapthon3: init at 1.0.1
2020-11-23 10:27:32 +00:00
Poscat
7489594a07
qv2ray: Init at 2.6.3
2020-11-23 17:50:03 +08:00
taku0
ab0d840575
Merge pull request #102315 from andreoss/master
...
adoptopenjdk: 8.0.252 -> 8.0.272, 11.0.7 -> 11.0.9, add 14.0.2, add 15.0.1
2020-11-23 18:35:57 +09:00
andreoss
80f1e61114
adoptopenjdk: 8.0.252 -> 8.0.272, 11.0.7 -> 11.0.9, add 14.0.2, add 15.0.1
...
Add latest openjdk releases.
2020-11-23 12:19:26 +03:00
Bruno Bigras
b2acf96e80
chars: init at 0.5.0
...
Co-authored-by: Ivar <41924494+IvarWithoutBones@users.noreply.github.com>
Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
2020-11-22 23:41:37 -05:00
Nejc Zupan
2ea951480d
pgweb: init at 0.11.7
...
Add pgweb, a light and fast web-based PostgreSQL database browser
2020-11-22 23:43:36 +00:00
Doron Behar
77f5eacf9d
qsyncthingtray: use qt515
2020-11-22 23:42:45 +02:00
Ryan Mulligan
31c770d065
rage: 0.4.0 -> 0.5.0
...
* Upgrades to latest version
* Moves darwin security access into derivation,
simplifying all-packages.nix
* Add RyanTM as maintainer
2020-11-22 13:18:38 -08:00
Michael Raskin
6b813c7d4b
Merge pull request #97155 from catern/pdoc3
...
pythonPackages.pdoc3: init at 0.9.1
2020-11-22 16:38:49 +00:00
Michael Raskin
5edcf11a0c
Merge pull request #104425 from MetaDark/ccache
...
ccache: 3.7.12 -> 4.0
2020-11-22 16:30:57 +00:00
Peter Hoeg
31cf796be6
openvpn: 2.4.9 -> 2.5.0
2020-11-22 20:36:57 +08:00
Florian Klink
904f124247
Merge pull request #99116 from jslight90/gitlab-13.4.0
...
GitLab 13.0.14 -> 13.6.0
2020-11-22 12:00:03 +01:00
LightDiscord
472b6f4f33
protonmail-bridge: 1.2.3-1 -> 1.5.0
...
Provide a minimal cli only version see #97991 .
Reviewed-by: SuperSandro2000 <sandro.jaeckel@posteo.de>
Reviewed-by: kalbasit <github@kalbas.it>
2020-11-22 10:26:36 +01:00
Izorkin
e10ce84e27
wsdd: init at 0.6.2
2020-11-22 10:19:38 +03:00
Kira Bruneau
82ca111efb
ccache: 3.7.12 -> 4.0
...
Additional changes:
- Added myself as a maintainer
- Generalized ccacheStdenv to allow overriding stdenv
2020-11-21 22:21:43 -05:00
Martin Weinelt
7ddff4b6e3
Merge pull request #104500 from andir/packet-sd
...
packet-sd: init at 0.0.3
2020-11-21 20:41:53 +01:00
Mario Rodas
5fac0cf1e9
Merge pull request #100226 from sikmir/pg_featureserv
...
pg_featureserv: init at 1.1.1
2020-11-21 14:39:20 -05:00
Andreas Rammhold
2bfa21205a
packet-sd: init at 0.0.3
...
This is currently being used as part of the NixOS.org infrastructure [1]
and should probably be included here and not just "downstream" (in the
nixops configs).
[1] 26105e7afa/delft/prometheus/packet-sd.nix
2020-11-21 20:34:17 +01:00
Malte Brandy
00593bdb64
cachix: Build from 8.10.2, fix build and activate on hydra
...
This removes the broken flag from everything depending on servant so it
can get a new chance to build following the servant fix.
2020-11-21 19:59:08 +01:00
Markus Hauck
07540daf4d
rehex: init at 0.3.1
2020-11-21 19:22:24 +01:00
Malte Brandy
74f7644771
Revert "Revert "Revert "cachix: drop the build from the release jobset"""
...
This reverts commit e6c0c51ce8
.
2020-11-21 18:05:37 +01:00
Martin Weinelt
712c2405b1
Merge pull request #103970 from kfollesdal/add-python-crontab
...
pythonPackage.python-crontab: init at 2.5.1
2020-11-21 16:50:10 +01:00
Jan Tojnar
a0efbc1b68
Merge pull request #101083 from fgaz/unstable-updater
2020-11-21 15:41:44 +01:00
Frederik Rietdijk
9ce7b79ec6
python27Packages: no longer build and prefer
...
The Python 2 packages set will remain available, however, it will not be
built by Hydra or ofBorg.
While some have expressed their desire to have a Python2 set around,
there has hardly been any effort to keep it working.
Not building Python 2 allows us to build an additional Python 3 set
(currently Python 3.9), which is important since Python switched
to a yearly release cadence.
2020-11-21 13:58:42 +01:00
Frederik Rietdijk
3eb6d01fa4
Merge pull request #103360 from jonringer/python39
...
[staging] python39Packages: recurseintoAttrs for package set
2020-11-21 13:57:13 +01:00
Doron Behar
4180a96e52
qtikz: Use qt5.15 (Add QPainterPath patch)
2020-11-21 12:54:25 +02:00
Doron Behar
5ab7eaa96d
vlc: Use qt515 (add QPainterPath patch from OpenSUSE)
2020-11-21 12:54:25 +02:00
Doron Behar
496222a7d9
digitalbitbox: mention that it segfaults with qt5.15
2020-11-21 12:52:52 +02:00
Doron Behar
4688540ba9
konversation: 1.7.5 -> 1.7.7
2020-11-21 12:52:25 +02:00
Francesco Gazzetta
3f20319cd1
unstableUpdater: init
2020-11-21 11:28:45 +01:00
kfollesdal
ef90af465a
pythonPackage.python-crontab: init at 2.5.1
2020-11-21 10:36:51 +01:00
Jörg Thalheim
dae00908a8
digikam: update opencv
2020-11-21 10:12:14 +01:00
Frederik Rietdijk
e6c0c51ce8
Revert "Revert "cachix: drop the build from the release jobset""
...
Reverting again because of an evaluation error.
https://github.com/NixOS/nixpkgs/issues/104475
This reverts commit f75c8753d8
.
2020-11-21 10:11:28 +01:00
Doron Behar
a942b8d496
kmymoney: Use qt5.15 (with unbroken qt515.qtwebkit)
2020-11-21 10:55:38 +02:00
Doron Behar
7e3d216725
nextcloud-client: use qt5.15
...
It segfaults with qt5.14.
2020-11-21 10:55:35 +02:00
Frederik Rietdijk
54cb417ba0
Merge staging-next into staging
2020-11-21 08:43:46 +01:00
Frederik Rietdijk
1ffd7cf0d6
Merge master into staging-next
2020-11-21 08:43:10 +01:00
Martin Weinelt
ee7c7f70ae
Merge pull request #88822 from mweinelt/pim6sd
...
pim6sd: init at unstable-2019-05-31
2020-11-21 03:08:28 +01:00
freezeboy
3189230412
heaptrack: migrate to Qt5.15
2020-11-21 02:34:40 +01:00
Milan Pässler
2429d5a307
gitlab: 13.5.1 -> 13.6.0
...
Changed ruby version to 2.7.x to match upstream.
Added a gem config for gitlab-pg_query as it tries to download a source
tarball during the build process.
Also removed a patch for gitaly that has become obsolete by upstream fix
[here](de04077c25
).
2020-11-21 01:38:35 +01:00
freezeboy
79ce317395
massif-visualizer: migrate to Qt5.15
2020-11-20 16:37:54 -08:00
freezeboy
ca959b6a2d
partition-manager: migrate to Qt5.15
2020-11-21 00:23:38 +01:00
Domen Kožar
f75c8753d8
Revert "cachix: drop the build from the release jobset"
...
This reverts commit e6811900dd
.
2020-11-20 23:13:51 +01:00
Domen Kožar
dc9f85e69e
cachix: make it build
2020-11-20 23:13:51 +01:00
Jonathan Ringer
f0aac91187
Merge pull request #102840 from freezeboy/update-fixes
...
treewide: Qt5.X -> Qt5.15 (when possible)
2020-11-20 14:09:26 -08:00
Peter Simons
4f2880ba12
Merge pull request #103740 from NixOS/haskell-updates
...
Update Haskell package set to Stackage Nightly (plus other fixes)
2020-11-20 22:39:15 +01:00
Guillaume Girol
47680042d9
Merge pull request #104321 from magnetophon/i3altlayout
...
i3altlayout: init at 0.3
2020-11-20 21:31:42 +00:00
Guillaume Girol
01083f116d
Merge pull request #102235 from symphorien/paperwork2
...
Paperwork 2.0
2020-11-20 21:30:08 +00:00
freezeboy
8b0dee1dc6
obs-studio,obs-v4l2sink: migrate to Qt5.15
...
obs-nvi was not touched but should be modified as well,
it requires a custom download that I don't use, so I prefer to
let official maintainer do it.
2020-11-20 22:26:33 +01:00
freezeboy
5c2d391f73
rssguard: migrate to Qt5.15
2020-11-20 22:24:30 +01:00
freezeboy
c604e61cf8
luminanceHDR: migrate to Qt5.15
2020-11-20 22:24:30 +01:00
freezeboy
2bdac39fda
kgraphviewer: migrate to Qt5.15
2020-11-20 22:24:29 +01:00
freezeboy
d63a3895af
fritzing: migrate to Qt5.15
2020-11-20 22:24:29 +01:00
freezeboy
df3065a7ef
csound-qt: migrate to Qt5.15
...
Did not touch the dependency to python27 but may require another PR
2020-11-20 22:24:29 +01:00
freezeboy
78e3620fdc
communi: migrate to Qt5.15
2020-11-20 22:24:29 +01:00
freezeboy
28ea56deb9
amarok: migrate to Qt5.15
2020-11-20 22:24:28 +01:00
Doron Behar
c240827cbe
merkaator: comment why it needs qt5.14
2020-11-20 22:24:28 +01:00
Doron Behar
3b4598feb4
mendeley: comment why it needs qt5.14
2020-11-20 22:24:28 +01:00
Doron Behar
b203a64cc3
kmymoney: pin to qt5.14
2020-11-20 22:24:28 +01:00
freezeboy
38b041bdf8
libsForQt5.qtcurve: fix build with Qt5.15
...
moved the initial qtcurve package to mkLibsForQt5 function
to decouple from Qt5 version
added an alias qtcurve -> libsForQt5.qtcurve for backward compatibility
add option to disable gtk2 support (still enabled by default)
2020-11-20 22:24:27 +01:00
freezeboy
bb18d1dcf1
sigil: migrate to Qt5.15 and fix segfault
2020-11-20 22:24:27 +01:00
freezeboy
ecf4fd16b9
retroshare: move to alias and explain why it is broken
2020-11-20 22:24:27 +01:00
freezeboy
c173f416e0
libsForQt5.kde2-decoration: 1.0 -> 1.1
...
Fixes build for Qt5.15
Split output to mutilple outputs to reduce user closure size
2020-11-20 22:24:26 +01:00
freezeboy
e4aa0e0936
ostinato: 0.9 -> 1.1
...
* Port to Qt5.15 in the process
* Cleanup the derivation to use new style
2020-11-20 22:24:26 +01:00
freezeboy
a62425888c
p4v: comment why it is broken with Qt5.15
2020-11-20 22:24:26 +01:00
freezeboy
c99a4f92ac
libsForQt5.herqq: fix build with qt5.15
...
Using a unreleased commit from upstream.
Also moved the derivation to mkLibsForQt5 to let
the application choose its Qt5 version.
Did not put an alias as previous version was broken
since ages.
2020-11-20 22:24:25 +01:00
freezeboy
cec5b4d18b
cutecom: fix build with Qt5.15
...
Used a dangling commit on upstream master branch as it was not released
and the patch was submitted to opensuse instead of upstream
2020-11-20 22:24:25 +01:00
freezeboy
be86d67202
skanlite: migrate to Qt5.15
2020-11-20 22:24:25 +01:00
freezeboy
b492fd4306
skrooge: migrate to Qt5.15, enable tests
2020-11-20 22:24:25 +01:00
freezeboy
8a2a835f22
sonic-lineup: migrate to Qt5.15
2020-11-20 22:24:24 +01:00
freezeboy
57a938aad6
clipgrab: migrate to Qt5.15
2020-11-20 22:24:24 +01:00
freezeboy
984114b57a
ktorrent: migrate to Qt5.15
2020-11-20 22:24:24 +01:00
freezeboy
45e4e72a9d
flameshot: migrate to Qt5.15, fix homepage
2020-11-20 22:24:24 +01:00
freezeboy
84ee3f6360
strawberry: migrate to Qt5.15
2020-11-20 22:24:23 +01:00
freezeboy
0c1c70653d
birdtray: migrate to Qt5.15
2020-11-20 22:24:23 +01:00
freezeboy
0ed2faf655
rsibreak: migrate to Qt5.15
2020-11-20 22:24:23 +01:00
freezeboy
b6602c1d68
minitube: 3.2 -> 3.6
...
rewrite without useless wrapQtAppsHook and stdenv
2020-11-20 22:24:23 +01:00
freezeboy
6d2cd35864
peruse: migrate to Qt5.15
2020-11-20 22:24:22 +01:00
freezeboy
d05f546eed
kronometer: migrate to Qt5.15
2020-11-20 22:24:22 +01:00
freezeboy
a40551cf29
krename: migrate to Qt5.15
2020-11-20 22:24:22 +01:00
freezeboy
d1259ed363
kdiff3: migrate to Qt5.15
...
fix homepage
2020-11-20 22:24:22 +01:00
freezeboy
bacf704e01
virt-manager-qt: migrate to Qt5.15
2020-11-20 22:24:21 +01:00
freezeboy
032bd0fd13
webcamoid: migrate to Qt5.15
...
rewrite without stdenv
2020-11-20 22:24:21 +01:00
freezeboy
9ea55b4fb5
zoom-us: migrate to Qt5.15
2020-11-20 22:24:21 +01:00
freezeboy
8296881706
psi-plus: migrate to Qt5.15
...
remove useless wrapQtAppsHook and stdenv
2020-11-20 22:24:21 +01:00
freezeboy
97b51ad5a9
psi: 1.4 -> 1.5
...
remove useless wrapQtAppsHook and stdenv
2020-11-20 22:24:20 +01:00
freezeboy
d29feee8b6
chiaki: migrate to Qt5.15
2020-11-20 22:24:20 +01:00
freezeboy
9290417300
pentobi: 18.1 -> 18.3
...
* Rewrite without stdenv and wrapQtAppsHook
* Fetch source from GithHub
2020-11-20 22:24:20 +01:00
freezeboy
8e375d71f0
saga: 7.7.0 -> 7.8.1
...
* Remove obsolete patches (merged into this release)
* rewrite without stdenv
2020-11-20 22:24:20 +01:00
freezeboy
94f44a6895
samplv1: 0.9.13 -> 0.9.18, migrate to Qt5.15
...
Rewrite without stdenv
2020-11-20 22:24:19 +01:00
freezeboy
9950899236
xflr5: migrate to Qt5.15
...
rewrite without wrapQtAppsHook and stdenv
2020-11-20 22:24:19 +01:00
freezeboy
1bb18de6e1
eagle: migrate to Qt5.15
2020-11-20 22:24:18 +01:00
freezeboy
f2335a5d98
appcsxcad: migrate to Qt5.15
...
* remove useless wrapQtAppsHook
2020-11-20 22:24:18 +01:00
freezeboy
ed7a64c4ee
qcsxcad: migrate to Qt511 + additional cleanup
...
* Split into multiple outputs
* Rewrite the derivation without stdenv
2020-11-20 22:24:18 +01:00
freezeboy
6683f3bf65
calaos_installer: 3.1 -> 3.5
...
Also migrate to Qt 5.15
2020-11-20 22:24:18 +01:00
freezeboy
43dbe81640
tellico: migrate to Qt5.15
2020-11-20 22:24:17 +01:00
freezeboy
8053c25b2f
vnote: 2.8.2 2.8.2 -> 2.10
...
Also migrate to Qt5.15
2020-11-20 22:24:17 +01:00
freezeboy
568befb1fd
protonmail-bridge: migrate to Qt5.15
2020-11-20 22:24:17 +01:00
freezeboy
62b77c5bbc
teamspeak_client: migrate to Qt5.15
2020-11-20 22:24:17 +01:00
freezeboy
9cbe9b5d04
golden-cheetah: use Qt5.14
2020-11-20 22:24:16 +01:00
freezeboy
768733f552
qlcplus: 4.12.2 -> 4.12.3
2020-11-20 22:24:16 +01:00
StigP
96d9861592
Merge pull request #104240 from stigtsp/package/perl-www-twilio-api-init
...
perlPackages.WWWTwilioAPI: init at 0.21
2020-11-20 22:17:47 +01:00
Peter Simons
e6811900dd
cachix: drop the build from the release jobset
...
The cachix build is broken with ghc-8.10.x and recent versions of
its dependencies, particularly servant, swagger2, etc. We cannot
easily fix that with overrides -- it would be best if upstream
released a new version that builds successfully in the Stackage
Nightly environment. A simple way to ensure that would be to add
cachix to Stackage.
Ping @domenkozar.
2020-11-20 21:50:49 +01:00
Bart Brouns
36118d4a9d
i3altlayout: init at 0.3
2020-11-20 21:38:22 +01:00
Guillaume Girol
bfbfe33fd6
Merge pull request #104104 from starcraft66/obs-move-transition
...
obs-move-transition: init at 2.0.2
2020-11-20 20:29:16 +00:00
Gabriel Ebner
660b92c476
Merge pull request #104057 from prusnak/electron
...
Introduce Electron 11, updates for Electron 8 and 9
2020-11-20 21:08:07 +01:00
Peter Simons
d8bf350320
haskellPackages: switch default package set to ghc-8.10.2
2020-11-20 20:57:35 +01:00
Jörg Thalheim
5e46d05486
Merge pull request #104261 from Mic92/spdlog
2020-11-20 19:01:29 +01:00
Jonathan Ringer
a20cf479b3
python2Packages.locustio: remove, unmaintained
2020-11-20 09:24:15 -08:00
Stig Palmquist
1cbdc2123d
perlPackages.WWWTwilioAPI: init at 0.21
2020-11-20 18:20:21 +01:00
Pavol Rusnak
8cde963967
electron_11: init at 11.0.2
...
make electron point to electron_11
2020-11-20 17:01:22 +01:00
Anderson Torres
ead04a6639
Merge pull request #104316 from AndersonTorres/at1985-update
2020-11-20 12:12:43 -03:00
Arnout Engelen
70ecb218f1
selinux: 2.9 -> 3.0 ( #104087 )
...
Notably, Python 2 code is not be supported in this project anymore and
new Python code should be written only for Python 3, which is no longer
restricted to Python 3.7 (see 780fb563c7
,
5dfd3c4975
)
https://github.com/SELinuxProject/selinux/releases/tag/20191204
2020-11-20 14:54:14 +01:00
StigP
729ed5ce6a
Merge pull request #104237 from stigtsp/package/perl-text-multimarkdown-init
...
perlPackages.TextMultiMarkdown: init at 1.000035
2020-11-20 09:56:03 +01:00
Doron Behar
1e43e4c316
Merge pull request #104298 from expipiplus1/joe-vulkan-extension-layer
...
vulkan-extension-layer: init at 2020-08-25
2020-11-20 10:30:43 +02:00
Joe Hermaszewski
c8d1171254
vulkan-extension-layer: init at 2020-08-25
...
There are no tags or releases on the repo, so just use the date as version.
Khronos strikes again with terrible naming here.
2020-11-20 15:25:26 +08:00
Tristan Gosselin-Hane
161a78037b
obs-move-transition: init at 2.0.2
2020-11-20 02:24:12 -05:00
Frederik Rietdijk
cbb4e4733b
Merge staging-next into staging
2020-11-20 08:12:39 +01:00
Frederik Rietdijk
553b7a8bf0
Merge master into staging-next
2020-11-20 08:12:06 +01:00
Austin Seipp
75e683d29d
pythonPackages: add new 'seccomp' library
...
As requested in #99553 . Closes #99553 .
Libraries that install python modules as part of the build are
problematic, because they either
- only support a single python version, because the input for
pythonPackages gets fixed in all-packages.nix, or
- need to be rebuild the underlying C code for *every* python version
resulting in libfoo-python37, libfoo-python38, and so on
We would prefer to use the second approach because it works correctly
for all versions of python. However, it creates duplicate copies of
libseccomp.so and that can be expensive. Instead we 'deduplicate' the
copies of libseccomp.so by
- attaching a new $pythonsrc output to the libseccomp deriv, and
- exposing a new 'seccomp' package in python-packages.nix using
libseccomp as input, and
- having a custom python.nix derivation that builds the cython
extension using libseccomp to get the python source and the
package version
This means we build 1 copy of the seccomp python package, one for each
version of python, but all of those packages refer to a single instance
of the libseccomp C library, giving us the best of both worlds.
NOTE: because this requires changing the postInstall of libseccomp, it
requires a mass rebuild.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2020-11-20 07:57:26 +01:00
Ben Siraphob
07d2079c1a
lambda-delta: init at 0.98.3
2020-11-20 08:58:08 +07:00
zowoq
ac963ef717
mmv-go: init at 0.1.2
2020-11-20 11:38:22 +10:00
Martin Weinelt
272dcd8f9a
snallygaster: init at 0.0.9
2020-11-20 02:06:30 +01:00
Ivar
9df15228fc
nuclear: init at 0.6.6
2020-11-20 00:49:11 +00:00
Jan Tojnar
66ef389efa
Merge branch 'staging-next' into staging
2020-11-20 01:38:58 +01:00
Jan Tojnar
f6105d21e3
Merge branch 'master' into staging-next
2020-11-20 01:38:32 +01:00
Jaakko Luttinen
854f78d155
pythonPackages.stack-data: init at 0.0.7
2020-11-19 16:08:23 -08:00
Jaakko Luttinen
b8fa662585
pythonPackages.littleutils: init at 0.2.2
2020-11-19 16:08:23 -08:00
AndersonTorres
c56cde86ca
1oom: init at 1.0
2020-11-19 19:05:23 -03:00
Ben Wolsieffer
6501d9880c
talloc: fix cross-compilation to 32-bit platforms
2020-11-19 20:42:59 +01:00
Robert Hensing
c68e739300
Merge pull request #104271 from adisbladis/dockertools-cross
...
dockerTools.buildLayeredImage: Fix cross compilation
2020-11-19 20:41:53 +01:00
Tom McLaughlin
c81c3c3daf
cling: init at 0.7.0 ( #64319 )
...
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
2020-11-19 14:29:02 -05:00
Frederik Rietdijk
ea7b8978ef
Merge master into staging-next
2020-11-19 20:08:15 +01:00
John Ericson
93b430bc6b
Merge pull request #104201 from obsidiansystems/splice-python
...
python: Splice packages to better support cross
2020-11-19 14:07:03 -05:00
John Ericson
b57c5d4456
python: Use makeScopeWithSplicing
...
Now non-`buildInputs` that are python packages should be resolved
correctly.
2020-11-19 11:58:07 -05:00
Michael Raskin
ec695db02f
Merge pull request #104166 from doronbehar/pkg/julia/cleanup
...
julia: Disable tests for 1.3.1, and make 1.5.3 the default
2020-11-19 14:53:38 +00:00
Jörg Thalheim
2bf5899d6a
Merge pull request #104105 from spacefrogg/openafs-1.9
2020-11-19 14:42:17 +01:00
adisbladis
4313ac6b29
dockerTools.buildLayeredImage: Fix cross compilation
2020-11-19 14:32:22 +01:00
Jörg Thalheim
a19b005867
fmt_6: remove
2020-11-19 13:58:53 +01:00
Jörg Thalheim
827fbf9dfd
gerbera: fix build with spdklog
2020-11-19 13:37:43 +01:00
Jörg Thalheim
02fc4fce9a
waybar: fix build with spdlog 1.8.1
2020-11-19 13:37:41 +01:00
Michael Weiss
15fb3be1c0
Merge pull request #104122 from Chiiruno/dev/rav1e
...
rav1e: 0.3.4 -> 0.4.0-alpha // ffmpeg-full: re-enable rav1e
2020-11-19 12:38:25 +01:00
zowoq
b23d2973b6
grobi: fix failing test on go 1.15
2020-11-19 20:32:44 +10:00
Maximilian Bosch
f2201dbb5d
Merge pull request #104213 from zowoq/prometheus
...
prometheus: 2.22.1 -> 2.22.2
2020-11-19 11:25:21 +01:00
Jörg Thalheim
589d025f73
Merge pull request #101571 from Pamplemousse/cutter
2020-11-19 11:14:56 +01:00
freezeboy
6bc5957714
python3Packages.youtube-dlc: init at 2020.11.11.post3
2020-11-19 08:13:21 +01:00
freezeboy
f78411700d
python3Packages.ndjson: init at 0.3.1
2020-11-18 22:39:40 -08:00
Vincent Laporte
229060146d
ocamlPackages.metrics-mirage: init at 0.2.0
2020-11-19 07:12:06 +01:00
Vincent Laporte
7346475c9f
ocamlPackages.metrics-influx: init at 0.2.0
2020-11-19 07:12:06 +01:00
freezeboy
813255b816
python3Packages.arabic-reshaper: init at 2.1.1
2020-11-18 20:50:00 -08:00
freezeboy
caa738142f
python3Packages.python-bidi: init at 0.4.2
2020-11-18 20:50:00 -08:00
Stig Palmquist
af9a60a126
perlPackages.TextMultiMarkdown: init at 1.000035
2020-11-19 05:00:04 +01:00
Daniël de Kok
a0bbcb7632
fedora-backgrounds.f33: init at 33.0.7
2020-11-19 10:52:31 +08:00
Okina Matara
2aff61f609
ffmpeg-full: re-enable rav1e
2020-11-18 20:42:50 -06:00
Mario Rodas
8826488bbd
Merge pull request #101936 from punkeel/punkeel/nodejs-14-lts
...
nodePackages: Switch to 14.x
2020-11-18 21:31:49 -05:00
Pamplemousse
056a35ad97
radare2-cutter: Use Qt 5.15
...
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
2020-11-18 17:07:06 -07:00
Andreas Rammhold
e5f945b13b
Merge pull request #104176 from andir/firefox-83
...
firefox: 82.0.3 -> 83.0, firefox-esr: 78.4.1esr -> 78.5.0esr, nss: 3.56 -> 3.58, cacert refactor
2020-11-19 00:47:04 +01:00
zowoq
8ec3ec7226
Revert "prometheus: pin to go 1.14"
...
This reverts commit ba17782524
.
Fixed in https://github.com/prometheus/prometheus/releases/tag/v2.21.0
2020-11-19 07:45:18 +10:00
Wulfsta
3c9c52db49
pythonPackages.flatbuffers: init at 1.12.0
2020-11-18 13:23:41 -08:00
Kevin Amado
04a641bd4f
pythonPackages.aioextensions: init at 20.11.1517005
2020-11-18 12:05:12 -08:00
Andreas Rammhold
cbd0f8931c
nss_3_53: init
2020-11-18 20:13:23 +01:00
freezeboy
95a170cda0
python3Packages.sockjs: init at 0.11.0
2020-11-18 10:57:17 -08:00
ajs124
4897c23904
spandsp3: init at 3.0.0
2020-11-18 17:13:29 +01:00
Frederik Rietdijk
da12fc6838
Merge staging-next into staging
2020-11-18 15:36:56 +01:00
freezeboy
00b385c612
dsview: 0.99 -> 1.12
...
Adapted the patches and took a commit from upstream master branch to
allow the migration to Qt5.15.
Had to copy the patch because of the custom sourceRoot.
2020-11-18 15:36:11 +01:00
Doron Behar
1e4c335a94
julia: Make 15 the default version
2020-11-18 15:33:18 +02:00
WORLDofPEACE
c7b0aeb0d3
Merge pull request #102537 from helsinki-systems/feat/dbus-apparmor
...
dbus: Add AppArmor support
2020-11-18 05:27:02 -05:00
Janne Heß
060d20de24
dbus: Enable AppArmor mediation support
2020-11-18 10:10:25 +01:00
Andrew Childs
d6a09adb5f
tcpreplay: fix darwin build
2020-11-18 15:02:58 +09:00
Ryan Mulligan
c12b401432
Merge pull request #104024 from ryantm/rm-shaarli
...
shaarli-material: remove package
2020-11-17 21:21:18 -08:00
Yorick van Pelt
9ca12dc4c7
python3Packages.reedsolo: init at 1.5.4
...
reedsolo: maintain, add tests, fix cython
reedsolo: Apply suggestions from code review
Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
2020-11-17 16:41:17 -08:00
Michael Raitza
1e97f1d455
openafs_1_9: init at 1.9.0
2020-11-17 23:32:21 +01:00
Lassulus
d93584cd1c
Merge pull request #101547 from kmein/feature/spotify-cli-linux
...
spotify-cli-linux: init at 1.6.0
2020-11-17 22:23:54 +01:00
Andreas Rammhold
48d4b84f40
Merge pull request #104027 from cole-h/crate2nix
...
crate2nix: init at 0.8.0
2020-11-17 22:23:27 +01:00
Lassulus
0749c7d68d
Merge pull request #101255 from kmein/feature/python-packages
...
python3Packages.{pygtrie, betacode}: init
2020-11-17 22:22:09 +01:00
Arnout Engelen
05e0aa3040
gcc: update to isl 0.20.0 for bootstrapping and recent versions ( #103311 )
2020-11-17 21:20:48 +00:00
Lassulus
652c2cd5bf
Merge pull request #104085 from kmein/feature/urlwatch
...
urlwatch: 2.19 -> 2.21
2020-11-17 21:45:41 +01:00
Michael Raitza
1f323ec2b4
openafs: remove 1.6; point to openafs_1_8
2020-11-17 21:31:59 +01:00
Kierán Meinhardt
097f5a54a6
python3Packages.pyppeteer: init at 0.2.2
2020-11-17 21:31:31 +01:00
Kierán Meinhardt
3a30b1fc16
python3Packages.pyee: init at 7.0.4
2020-11-17 20:57:14 +01:00
Michael Raskin
8e5f885ba0
Merge pull request #103783 from doronbehar/pkg/julia/lts
...
julia_10: rewrite
2020-11-17 19:42:16 +00:00
makefu
955548855d
aliases: rfkill is replaced by utillinux, not util-linux
2020-11-17 20:12:43 +01:00
Daiderd Jordan
aec155efb6
Merge pull request #104013 from thefloweringash/remove-darwin-bootstrap-test
...
release: disable darwin bootstrapped stdenv test
2020-11-17 18:45:34 +01:00
Cole Helbling
011ecb8f90
crate2nix: init at 0.8.0
...
crate2nix is a tool that "generates nix build files for rust crates
using cargo".
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2020-11-17 08:13:04 -08:00
ajs124
9706108b63
Merge pull request #102124 from helsinki-systems/upd/jackmix
...
jackmix: 0.5.2 -> 0.6.0
2020-11-17 16:13:47 +01:00
Nicolas Martin
9af958340a
nextinspace: init at 1.0.6
2020-11-17 15:41:53 +01:00
Fabián Heredia Montiel
085da94ace
shards: refactor and 0.11.0 -> {0.11.1, 0.12.0}
2020-11-17 22:19:04 +08:00
Fabián Heredia Montiel
bc029589d4
crystal: refactor and add 0.35.1
2020-11-17 22:19:04 +08:00
Anderson Torres
dced59203c
Merge pull request #103942 from AndersonTorres/wip-cc65
...
cc65: init at 2.18
2020-11-17 09:14:28 -03:00
Arnout Engelen
2d9839d431
mailutils: update guile to current version ( #103209 )
...
Apparently a previous version of mailutils didn't compile
with guile 2.2, but this does no longer appear to be the case.
This is particularly relevant because mailutils is part of
the iso_minimal test set we are currently focusing on for
getting more of NixOS reproducible, and guile_2_0 is not
reproducible (https://r13y.com/ )
2020-11-17 11:31:39 +01:00
Evax Software
18e21a5a7d
Remove VueScan
...
The author is forbidding packaging of his software.
2020-11-17 10:09:52 +01:00
Doron Behar
ba9d95ca8f
julia_10: rewrite
...
Don't use ./shared.nix as it's not shared anymore.
Fix tests with an upstream patch and a few commands in postPatch.
Assert that blas and lapack are compatible.
Rename utf8proc patch.
2020-11-17 10:45:37 +02:00
Doron Behar
6bd360b4a4
Merge pull request #103957 from expipiplus1/joe-vulkan
2020-11-17 10:43:56 +02:00
Joe Hermaszewski
b2fae2dbdf
vulkan-tools-lunarg: init at 1.2.141.0
2020-11-17 15:08:51 +08:00
Ryan Mulligan
c7b3e43be0
shaarli-material: remove package
...
This has been marked broken since Oct 2019 and has no maintainer.
2020-11-16 21:08:44 -08:00
Anderson Torres
e8e3f7d398
Merge pull request #103339 from veprbl/pr/openshot_darwin
...
openshot-qt: enable on darwin
2020-11-16 22:45:14 -03:00
Andrew Childs
c5b0f56ae4
release: disable darwin bootstrapped stdenv test
2020-11-17 10:03:07 +09:00
Dmitry Kalinkin
972bcb496d
openshot-qt: enable on darwin
2020-11-16 18:07:08 -05:00
Dmitry Kalinkin
621f649bfb
libsForQt5.libopenshot-audio: enable on darwin
2020-11-16 18:07:01 -05:00
Anderson Torres
b77f0d0bc1
Merge pull request #103229 from zyansheep/master
...
lunar-client: init at version 2.4.0
2020-11-16 18:33:30 -03:00
Karol Chmist
002a5f9de1
Add sphinx autoapi 1.5.1
2020-11-16 09:52:15 -08:00
sternenseemann
bc714f86a5
ocamlPackages.ca-certs: init at 0.1.2
2020-11-16 16:09:18 +01:00
Frederik Rietdijk
36b27ccf77
Merge pull request #103462 from NixOS/staging-next
...
Staging next
2020-11-16 15:23:47 +01:00
Mazurel
8e995109f2
devour: init at 12
2020-11-16 14:20:12 +01:00
Bart Brouns
89fae7b7c7
vdirsyncerStable: deprecate
2020-11-16 20:23:49 +08:00
Bart Brouns
452043842a
vdirsyncer: rename stable.nix to default.nix
2020-11-16 20:23:49 +08:00
Bart Brouns
90126c3e48
vdirsyncer: delete default.nix, point vdirsyncer to stable.nix
...
TLDR: default.nix was pointing to an unmaintained code base whereas stable.nix is up-to-date and maintained.
History
1. At first their was one Python version of vdirsyncer that had been working fine for years. Then, maintenance decreased and the package was marked as broken in nixpkgs.
2. The original author (@untitaker on github.com) of vdirsyncer decided to re-implement (part of) vdirsyncer in Rust. Nixpkgs made `vdirsyncer` point to the Rust version and renamed the Python historical version to `vdirsyncerStable`.
3. Eventually, @untitaker gave up on the Rust version.
4. Someone else (@WhyNotHugo on github.com) decided to take over maintenance of the Python version.
5. Mario Rodas (@marsam on github) and Damien Cassou updated the `vdirsyncerStable` to point to the work of @WhyNotHugo and mark the package as working again.
2020-11-16 20:23:49 +08:00
Frederik Rietdijk
986c2d36da
Merge master into staging-next
2020-11-16 09:01:53 +01:00
AndersonTorres
d024fa5ef8
cc65: init at 2.18
2020-11-15 20:49:58 -03:00
Anderson Torres
25afd6a3ec
Merge pull request #103768 from AndersonTorres/wip-antiprism
...
antiprism: init at 0.26
2020-11-15 19:43:57 -03:00
Symphorien Gibol
74b9066a39
paperwork: 1.3.1 -> 2.0
2020-11-15 15:46:53 +01:00
Anderson Torres
b6deb94192
Merge pull request #103839 from AndersonTorres/wip-simh
...
simh: init at 3.11-1
2020-11-15 10:04:04 -03:00
Michael Weiss
20a9caf0a4
iproute: Rename the attribute to iproute2
...
This is done because the project is actually named iproute2:
- https://wiki.linuxfoundation.org/networking/iproute2
- https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
- https://en.wikipedia.org/wiki/Iproute2
Our package name already reflects that and for consistency the attribute
name should also be iproute2.
However, it is important to note that some distributions use "iproute"
(but that might be for technical reasons):
- https://repology.org/project/iproute2/versions
2020-11-15 12:16:48 +01:00
Vincent Laporte
2806eb2743
coq_8_12: 8.12.0 → 8.12.1
2020-11-15 12:03:15 +01:00
Vincent Laporte
b94a294363
scheherazade-new: init at 3.000
2020-11-15 09:33:45 +01:00
Jonathan Strickland
a198e2f39b
xlife: init at 6.7.5
2020-11-15 03:16:54 -05:00
Martin Weinelt
c84ad307e6
tts: init at unstable-2020-06-17
2020-11-15 04:01:15 +01:00
Jörg Thalheim
a7455e6911
python3.pkgs.pysbd: init at 0.3.3
2020-11-15 00:13:33 +01:00
Matthieu Coudron
6bf0226686
pythonPackages.notmuch2: init at 0.31
...
generates bindings via cffi
2020-11-14 23:46:25 +01:00
AndersonTorres
c7463be402
simh: init at 3.11-1
2020-11-14 19:24:35 -03:00
Michael Raskin
3e5039cbd5
Merge pull request #103714 from mweinelt/python/phonemizer
...
python3Packages.phonemizer: init at 2.2.1
2020-11-14 22:21:43 +00:00
John Ericson
86fedc3a92
Merge pull request #102766 from siraben/mmix
...
Initial implementation of cross-compilation to Knuth's MMIX
2020-11-14 12:46:24 -05:00
Martin Weinelt
8578fb3144
phonemizer: init at 2.2.1
2020-11-14 17:52:19 +01:00
Dmitry Kalinkin
832665765f
Merge pull request #103647 from sikmir/qvge
...
qvge: init at 0.6.1
2020-11-14 08:40:38 -05:00
Timo Kaufmann
a638df745d
Merge pull request #97028 from midchildan/package/arc_unpacker
...
arc_unpacker: init at b9843a1
2020-11-14 14:30:35 +01:00
midchildan
302cbf171c
arc_unpacker: init at unstable-2019-01-28
2020-11-14 18:07:03 +09:00
Frederik Rietdijk
da6239dab3
Merge #98541 into staging-next
2020-11-14 09:19:31 +01:00
Vincent Laporte
9ca92f0a5b
ocamlPackages.mirage: init at 3.9.0
2020-11-14 09:11:28 +01:00
AndersonTorres
fb1c3a2e1d
all-packages.nix: a small reorganization
...
Now the science/geometry expressions are in a same block of the all-packages
file.
2020-11-14 00:48:32 -03:00
AndersonTorres
f61b91cec4
antiprism: init at 0.26
2020-11-14 00:37:10 -03:00
Samuel Dionne-Riel
b8c1348049
Merge pull request #103735 from andir/uboot-rockpi4
...
ubootRockPi4: init
2020-11-13 21:35:19 -05:00
Andreas Rammhold
7a5047bede
ubootRockPi4: init
...
This adds support for the Radxa Rock Pi 4 board which is based on
RK3399. The u-boot outputs from the introduced build are suitable to
build a generic image for the Rock Pi 4 by setting the following in a
custom build of $nixpkgs/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix:
```
sdImage.postBuildCommands = ''
dd if=${pkgs.ubootRockPi4}/idbloader.img of=$img seek=64 conv=notrunc
dd if=${pkgs.ubootROckPi4}/u-boot.itb of=$img seek=16384 conv=notrunc
'';
```
2020-11-14 02:25:41 +01:00
Mario Rodas
11453fa436
protobuf: 3.13.0.1 -> 3.14.0
...
https://github.com/protocolbuffers/protobuf/releases/tag/v3.14.0
2020-11-13 19:01:00 -05:00
Christoph Stich
5a5cb550dd
julia: init at 1.5 ( #101933 )
2020-11-13 21:43:50 +00:00
Nikolay Korotkiy
986d973ff4
qvge: init at 0.6.1
2020-11-13 23:53:50 +03:00
Joe Hermaszewski
e5570d9f8b
update-nix-fetchgit: standalone small closure
2020-11-13 21:37:56 +01:00
Frederik Rietdijk
9fc4a4db5a
Merge staging-next into staging
2020-11-13 20:59:08 +01:00
Frederik Rietdijk
463f738cc6
Merge master into staging-next
2020-11-13 20:58:35 +01:00
Zyansheep
660864eb6f
lunar-client: init at 4.2.0
2020-11-13 12:27:46 -05:00
Jack Kelly
d01e5dc66b
octant: init at 0.16.0 ( #99546 )
2020-11-13 18:03:10 +01:00
Vincent Laporte
10fc2a3ac9
ocamlPackages.mstruct: remove at 1.4.0
2020-11-13 11:01:52 +01:00
Lassulus
5c816b9f1a
Merge pull request #101251 from samuelgrf/update-fmt
...
fmt: 6.2.1 -> 7.0.3
2020-11-13 10:44:16 +01:00
Daiderd Jordan
411f9e25d7
Merge pull request #98541 from thefloweringash/darwin-tapi-stdenv
...
darwin (Big Sur): tbd based stdenv
2020-11-13 00:14:25 +01:00
Orivej Desh (NixOS)
df89889a67
Merge pull request #102521 from freezeboy/update-vmpk
...
vmpk: 0.5.1 -> 0.7.2
2020-11-12 22:33:02 +00:00
Matthew Pickering
7a9c3739a4
LAStools: init at 180812
2020-11-12 13:51:55 -08:00
Jonas Chevalier
a7cb88c3de
tree-wide: unify Bash completions outputs ( #103421 )
...
Use $out/share/bash-completion/completions to store the Bash completions
2020-11-12 21:22:18 +00:00
Matthieu Coudron
2bbfa82c2f
Merge pull request #103232 from teto/mptcp_official
...
linux_mptcp_5_9: init upstream multipath TCP at 5.9
2020-11-12 22:15:02 +01:00
Martin Weinelt
5c79a18f98
Merge pull request #99194 from prusnak/fastecdsa
...
python3Packages.fastecdsa: init at 2.1.5
2020-11-12 21:36:36 +01:00
Lassulus
40811ee161
Merge pull request #103052 from dbirks/add-ssmsh
...
ssmsh: init at 1.4.3
2020-11-12 21:00:27 +01:00
Pavol Rusnak
f70ecb65e7
python3Packages.fastecdsa: init at 2.1.5
2020-11-12 20:59:56 +01:00
Martin Weinelt
a6c7b75e4d
Merge pull request #99284 from Munksgaard/bump-obs
...
obs-studio: Add builtin support for browser source
2020-11-12 19:12:54 +01:00
Matthieu Coudron
015939bece
linux_mptcp_5_9: MPTCP in upstream linux
...
linux_mptcp_5_9 enables Multipath TCP in the upstream kernel.
I keep linux_mptcp_95 even if it is out of tree because it has "more" features
than linux_mptcp_5_9.
2020-11-12 18:51:45 +01:00
Matthieu Coudron
db215ca08d
linux_mptcp_94: remove (outdated)
...
few years old by now, use linux_mptcp_95 instead.
2020-11-12 18:51:18 +01:00
StigP
eaf2a0fcbe
Merge pull request #97673 from andir/add-perl-catalyst-ldap
...
perlPackages: init Catalyst::Authentication::Store::LDAP at 1.016 (and dependencies)
2020-11-12 12:13:23 +00:00
StigP
28a498b4b1
Merge pull request #103264 from zakame/updates/perl-Future-AsyncAwait-0.46
...
perlPackages.FutureAsyncAwait: 0.45 -> 0.46
2020-11-12 12:08:57 +00:00
Nick Hu
a371c10711
Merge pull request #102763 from colemickens/tree-sitter
...
tree-sitter: 0.17.1 -> 0.17.3; run make install
2020-11-12 09:05:59 +00:00
Lassulus
adbcba2ce7
Merge pull request #93833 from pulsation/add-quisk
...
quisk: init at 4.1.72
2020-11-12 08:22:10 +01:00
freezeboy
fd9f28c396
vmpk: 0.5.1 -> 0.7.2
...
Also migrate from qt4 to qt5 (#33248 )
2020-11-12 03:42:22 +00:00
Anderson Torres
55153b8b48
Merge pull request #103110 from AndersonTorres/4th
...
4th: init at 3.62.5
2020-11-11 19:20:08 -03:00
Marek Mahut
c095429001
Merge pull request #98726 from xwvvvvwx/turbo-geth
...
turbo-geth: init at 2020.09.04
2020-11-11 22:35:49 +01:00
Gabriel Ebner
753656bbbc
Merge pull request #103225 from gebner/hsphfpd
...
pulseaudio: add hsphfpd support
2020-11-11 19:56:35 +01:00
pulsation
a3bf66f487
quisk: init at 4.1.72
2020-11-11 19:43:07 +01:00
Michael Raskin
83992fd7c6
bisoncpp: init ( #103316 )
...
* bobcat: 4.08.03 -> 5.05.00; switch homepage
* bisoncpp: init at 6.04.00
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2020-11-11 18:20:39 +00:00
David Terry
d277dc65a1
turbo-geth: init at 2020.11.01
2020-11-11 19:00:57 +01:00
Andrew Childs
3456ef6f30
darwin/apple-sdk: use darwin stubs
2020-11-12 00:23:09 +09:00
Andrew Childs
fd33052999
darwin/print-reexports: nixpkgs-specific utility to inspect .tbd files
...
Used during bootstrap to check that re-exported libraries are not
dangling.
2020-11-12 00:23:09 +09:00
Andrew Childs
8946ff8d71
darwin/darwin-stubs: init
2020-11-12 00:23:09 +09:00
Frederik Rietdijk
4076ffe580
Merge staging-next into staging
2020-11-11 16:00:34 +01:00
Marek Mahut
e39bc29e1e
asciigraph: init at 0.5.1 ( #103184 )
2020-11-11 23:48:05 +10:00
Kevin Cox
5dee9b5699
Merge pull request #96679 from midchildan/add-mackerel
...
mackerel-agent: init at 0.69.3
2020-11-11 06:59:22 -05:00
Gabriel Gonzalez
87d5e6fc1a
Change idiom for overriding Dhall package version
...
Before this change, a Dhall package like the Prelude would be
encoded as a record with one field per supported version. Then
downstream packages would specify which package to override
by selecting a different record field.
The problem with that approach is that it did not provide an
easy way to override a package to a version other than the default
ones supplied by Nixpkgs. Normally you would use the `.override`
method for this purpose, but the `override` method added by
`buildDhall{Directory,GitHub}Package` is clobbered by the
`override` method added by `callPackage` in
`./pkgs/top-level/dhall-packages.nix`.
The solution is to add a separate `.overridePackage` method which is
essentially the exact same as `.override`, except that it is no
longer clobbered by `callPackage`. This `.overridePackage` method
allows one to override the arguments supplied to
`buildDhall{Directory,GitHub}Package`, making it easier to specify
package versions outside of the ones supported by Nixpkgs..
This also includes a change to only build one (preferred) version of each
package (instead of multiple supported versions per package), in order to
minimize the maintenance burden for the Dhall package set.
2020-11-11 11:16:04 +01:00
John Ericson
493f8b2ea2
Merge pull request #93368 from samueldr/feature/or1k-toolchain
...
Initial support for OpenRISC 1000
2020-11-10 21:36:43 -05:00
Jonathan Ringer
976062ebd6
python39Packages: recurseintoAttrs for package set
2020-11-10 15:10:27 -08:00
Thiago Franco de Moraes
dd72edcdae
python3Packages.wxpython_4_1: init at 4.1.0
2020-11-10 15:07:57 -08:00
Jonathan Ringer
b2e857a5fe
spicetify-cli: init at 1.1.0
2020-11-10 14:48:34 -08:00
Edmund Wu
0f83b301aa
hsphfpd: init at 2020-10-25
2020-11-10 20:53:13 +01:00
Robert Hensing
3f7278f9e9
Merge pull request #101341 from SuperSandro2000/gitlab-triage
...
gitlab-triage: init at 1.13.0
2020-11-10 19:14:29 +01:00
William Casarin
b5f8f521e6
cp437: init at v0.6
...
Emulates an old-style "code page 437" / "IBM-PC" character set terminal
on a modern UTF-8 terminal emulator.
Signed-off-by: William Casarin <jb55@jb55.com>
2020-11-10 12:25:19 +01:00
Domen Kožar
fdb4b55a09
Merge pull request #102265 from bburdette/timekeeper
...
Timekeeper gtk app
2020-11-10 10:55:16 +01:00
Frederik Rietdijk
0b2ca377b1
Merge staging-next into staging
2020-11-10 10:13:13 +01:00
Frederik Rietdijk
379aaa1e0c
Merge master into staging-next
2020-11-10 10:11:08 +01:00
Fabián Heredia Montiel
674d77e68a
coconut: init at 1.4.3
2020-11-09 23:16:23 -08:00
Fabián Heredia Montiel
4408345c9c
pythonPackages.cpyparsing: init at 2.4.5.0.1.1
2020-11-09 23:16:23 -08:00
Samuel Dionne-Riel
46db711cda
or1k-newlib: Add newlib for OpenRISC 1000
2020-11-09 22:32:11 -05:00
Zak B. Elep
4735ed0d4f
perlPackages.FutureAsyncAwait: 0.45 -> 0.46
2020-11-10 11:04:48 +08:00
Mario Rodas
a049480f2d
Merge pull request #103126 from marsam/init-go-chromecast
...
go-chromecast: init at 0.2.5
2020-11-09 20:04:15 -05:00
Peter Hoeg
fdca20391c
plasma-thunderbolt: init at 5.18.5
2020-11-10 08:10:00 +08:00
Tim Steinbach
264f235e62
Merge pull request #103103 from NeQuissimus/hardened_59
...
linux-hardened: 5.8.x -> 5.9.x
2020-11-09 18:33:17 -05:00
Anderson Torres
c08c8a5344
Merge pull request #103179 from djanatyn/pkg/fend
...
fend: init at 0.1.9
2020-11-09 18:34:18 -03:00
Anderson Torres
5e9d9f07d1
Merge pull request #103050 from AndersonTorres/create-dockapps
...
Reorganize windowmaker dockapps
2020-11-09 17:48:42 -03:00
AndersonTorres
ce009bb0e2
Dockapps: new structure
2020-11-09 17:35:31 -03:00
AndersonTorres
2cc1860faf
Dockapps: cleanup
2020-11-09 17:32:21 -03:00
Andreas Wiese
0262af9cce
chrysalis: init at 0.7.9
2020-11-09 21:21:56 +01:00
Michael Weiss
05192975fb
Merge pull request #103221 from primeos/llvm
...
llvmPackages_latest: llvmPackages_10 -> llvmPackages_11
2020-11-09 20:41:21 +01:00
Nick Hu
a63c72212c
tree-sitter: macOS compatibility
2020-11-09 18:41:51 +00:00
Nick Hu
aea7f1b540
tree-sitter: make shared/static libraries configurable
2020-11-09 18:41:20 +00:00
Sarah Brofeldt
92e357dc59
Merge pull request #103125 from xfix/remove-freicoin
...
altcoins.freicoin: remove
2020-11-09 19:37:36 +01:00
Edmund Wu
33784354b9
pulseaudio-hsphfpd: init at 2020-11-02
2020-11-09 19:24:42 +01:00
Markus S. Wamser
9ed8e03a09
mupdf: mark 1.17 as insecure but as still required as dependency
2020-11-09 09:57:38 -08:00
Michael Weiss
51e55942cc
llvmPackages_latest: llvmPackages_10 -> llvmPackages_11
2020-11-09 18:25:09 +01:00
Lassulus
77c0568da5
Merge pull request #100028 from helsinki-systems/py_openrouteservice
...
pythonPackage.openrouteservice: init at 2.3.0
2020-11-09 15:21:42 +01:00
Doron Behar
9db44f61a7
rubyMinimal: remove
...
Due to being unused, and seemingly unusable, added appropriate release
notes.
2020-11-09 16:17:41 +02:00
Doron Behar
f59f04352a
ruby: Rename removeReferencesToCC flag to !jitSupport
...
If JIT support is built in to ruby, there's no choice other then to
leave this cc reference as is. removeReferencesToCC didn't do it's job
completely since some time ago. That's why it was practically redundant
- `lib/ruby/${version}/<platform>/rbconfig.rb` still referenced cc.
Removing this reference from
`lib/ruby/${version}/<platform>/rbconfig.rb` as well might lead to
breakage in some Gems that require this feature.
But, if JIT support is not desired, it should be safe enough to
completely remove all cc references, both in
lib/ruby/${version}/<platform>/rbconfig.rb and in $out/lib/libruby.so .
Hence now `rubyMinimal` has JIT support disabled and it has no
references at all to stdenv.cc.
2020-11-09 16:17:39 +02:00
Lassulus
6423ac7bf0
Merge pull request #100027 from helsinki-systems/py_googlemaps
...
pythonPackages.googlemaps: init at 4.4.2
2020-11-09 15:08:39 +01:00
Mario Rodas
5fff64bc01
Merge pull request #103131 from marsam/fix-dogdns-darwin
...
dogdns: fix build on darwin
2020-11-09 09:03:58 -05:00
Frederik Rietdijk
8aaf2e60e5
Merge staging-next into staging
2020-11-09 14:49:10 +01:00
Frederik Rietdijk
20f001c01e
Merge master into staging-next
2020-11-09 14:33:52 +01:00
Ben Siraphob
445dde6304
Initial implementation of mmix cross-compile
2020-11-09 19:49:55 +07:00
WORLDofPEACE
00ecee00bb
Merge pull request #102664 from andreasfelix/andreasfelix/vala-language-server
...
vala-language-server: init at 0.48.1
2020-11-09 04:18:08 -05:00
Felix Andreas
49280e8bb8
vala-language-server: init at 0.48.1
2020-11-09 03:44:08 +01:00
Orivej Desh
0c75dfb732
convertall: init at 0.8.0 ( #103108 )
2020-11-09 01:45:09 +00:00
Jonathan Strickland
a5c97364b3
fend: init at 0.1.9
2020-11-08 20:03:25 -05:00
Michael Weiss
197ddbced2
mesa: Replace all usages of old aliases
2020-11-08 22:56:55 +01:00
Symphorien Gibol
b393908673
ocamlPackages.ocaml-lsp: init at 1.1.0
2020-11-08 21:25:04 +01:00
ajs124
bf4f302804
Merge pull request #101761 from helsinki-systems/init/asterisk18
...
asterisk_18: Init at 18.0.0
2020-11-08 17:31:37 +01:00
Ninjatrappeur
5f5d38e88f
Merge pull request #101218 from andir/unbound-systemd
2020-11-08 16:55:29 +01:00
Luke Granger-Brown
7d8631190a
pythonPackages.emv: init at 1.0.11
2020-11-08 15:30:17 +00:00
Jörg Thalheim
105dd1dfae
python3.pkgs.bme680: init at 1.0.5
2020-11-08 15:04:41 +01:00
Jörg Thalheim
d1dc6f61f9
python3.pkgs.smbus-cffi: init at 0.5.1
2020-11-08 15:04:41 +01:00
Konrad Borowski
b3e07c7532
altcoins.freicoin: remove
2020-11-08 12:41:19 +01:00
Bruno Bigras
e6fd6ab41e
dogdns: init at 0.1.0
2020-11-08 01:27:04 -05:00
AndersonTorres
2898985747
4th: init at 3.62.5
2020-11-08 01:48:09 -03:00
Mario Rodas
cea51f0cb9
go-chromecast: init at 0.2.5
2020-11-08 04:20:00 +00:00
Mario Rodas
ae17a85324
dogdns: fix build on darwin
2020-11-08 04:20:00 +00:00
Danielle Lancashire
b64df08a5f
nomad: Default package 0.11 -> 0.12
...
Nomad 0.12 has now reached a fairly stable point release, this means we
should now be able to bump the default pretty safely, with recent
releases bug fixes primarily targetting 0.12 exclusive features, or long
standing latent bugs.
2020-11-08 12:28:42 +10:00
Tim Steinbach
726d307d2c
linux-hardened: 5.8.x -> 5.9.x
2020-11-07 18:17:26 -05:00
Florian Klink
c0f4be6652
Merge pull request #102995 from lovesegfault/plater-init
...
plater: init at 2020-07-30
2020-11-07 23:45:08 +01:00
Michael Raskin
ba70a79f3c
Merge pull request #102936 from fare-patches/fare
...
Gerbil Update
2020-11-07 21:06:03 +00:00
Vladimír Čunát
45009cacef
Merge #102196 : doxygen: 1.8.19 -> 1.8.20 (in staging)
2020-11-07 21:15:21 +01:00
freezeboy
a73cedd74f
python3Packages.gradient_statsd: init at 1.0.1
2020-11-07 11:28:19 -08:00
freezeboy
bbc0af82bd
python3Packages.gradient_sdk: init at 0.0.4
2020-11-07 11:28:19 -08:00
freezeboy
bf066b27b4
python3Packages.click-help-colors: init at 0.8
2020-11-07 11:28:19 -08:00
freezeboy
f671d7e191
python3Packages.hyperopt: init at 0.1.2
2020-11-07 11:28:19 -08:00
Mario Rodas
799f0cf9a3
Merge pull request #102226 from Atemu/mlterm-darwin
...
mlterm: darwin support
2020-11-07 12:50:56 -05:00
Atemu
62b33a614d
mlterm: add Darwin support
2020-11-07 18:11:40 +01:00
David Birks
e7ce7e370a
ssmsh: init at 1.4.3
2020-11-07 11:39:00 -05:00
Anderson Torres
e45d10d0e6
Merge pull request #101109 from jeremyschlatter/nestedtext
...
pythonPackages.nestedtext: init at 1.2
2020-11-07 13:12:48 -03:00
StigP
04b374eb9c
Merge pull request #94074 from jshholland/as-tree
...
as-tree: init at 0.12.0
2020-11-07 13:07:36 +00:00
Daniël de Kok
e07a6ca48a
Merge pull request #102939 from raboof/seaweed-init-at-2.07
...
seaweedfs: init at 2.07
2020-11-07 13:26:02 +01:00
Michael Raskin
d464bdce84
Merge pull request #101042 from r-burns/soil
...
soil: fix dead url, enable on darwin
2020-11-07 12:13:22 +00:00
Michael Raskin
1badf89e03
Merge pull request #102488 from ioplker/textadept-11
...
Textadept 11
2020-11-07 12:09:29 +00:00
Vladimír Čunát
0d657b9c61
Merge #103069 : thunderbird*: 78.4.0 -> 78.4.1
...
In `thunderbird` case the rust downgrade was needed to fix the build
regardless of the update, i.e. fixes #103071 .
2020-11-07 13:01:36 +01:00
Arnout Engelen
aec3bd0bcb
seaweedfs: init at 2.07
2020-11-07 12:36:55 +01:00
Josh Holland
bcb92f53d5
as-tree: init at 0.12.0
2020-11-07 11:20:20 +00:00
taku0
00213ef17f
thunderbird: 78.4.0 -> 78.4.1
2020-11-07 19:51:44 +09:00
Ryan Burns
981c8bb5e2
soil: fix dead url, enable on darwin
2020-11-06 22:35:29 -08:00