Commit graph

41158 commits

Author SHA1 Message Date
Renaud
9a9925efd7
Merge pull request #50490 from kalbasit/nixpkgs_add-amass
amass: init at 2.8.3
2018-11-18 12:37:20 +01:00
Renaud
b74b0ad9a0
Merge pull request #50529 from dywedir/zola
gutenberg: 0.4.2 -> zola: 0.5.0
2018-11-18 11:58:57 +01:00
Orivej Desh
e66d263f6b eigen3_3: move version overrides to all-packages.nix 2018-11-18 10:53:25 +00:00
Daiderd Jordan
6adc522db4
Merge pull request #50524 from LnL7/darwin-qtmacextras
qt5.qtmacextras: include cf-private on darwin
2018-11-18 11:38:07 +01:00
Frederik Rietdijk
0d0d7dcd06 Merge staging-next into staging 2018-11-18 10:41:34 +01:00
Frederik Rietdijk
63c6875f26 Merge master into staging-next 2018-11-18 10:32:12 +01:00
Jan Malakhovski
ac09051cf5 pythonPackages.gpgme: inherit python
else building via e.g. `python3Packages.gpgme` produces the wrong result.
2018-11-18 09:08:06 +00:00
Jan Malakhovski
50aef6015f curl: move option defaults from all-packages.nix to the derivation itself 2018-11-18 07:59:40 +00:00
jD91mZM2
e2d5470b17
xidlehook: Fix darwin build
... I think
2018-11-18 08:27:39 +01:00
Wael M. Nasreddine
94ee915980
amass: init at 2.8.3 2018-11-17 21:29:33 -08:00
Austin Seipp
3e02311f89 foundationdb: default to 6.0.x
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-17 22:12:40 -06:00
Vladyslav Mykhailichenko
a470750ab4
gutenberg: 0.4.2 -> zola: 0.5.0 2018-11-18 00:53:15 +02:00
Renaud
866b1dbeda
glogg: init at 1.1.4
(#50520)
2018-11-17 23:04:41 +01:00
Svein Ove Aas
a88fcebc6f speedometer: init at 2.8 (#33627)
* speedometer: init at 2.8
2018-11-17 22:27:52 +01:00
Jörg Thalheim
1156427ac0
Merge pull request #50513 from layer-3-communications/add-openconnect-pa
Add openconnect pa
2018-11-17 20:41:39 +00:00
Daiderd Jordan
942d90b282
qt5.qtmacextras: include cf-private on darwin
Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_NSData", referenced from:
          objc-class-ref in qmacfunctions.o
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in qmactoolbar.o
          objc-class-ref in qmactoolbardelegate.o
    ld: symbol(s) not found for architecture x86_64
2018-11-17 21:02:22 +01:00
chessai
528b4d8727 add openconnect fork that has support for Palo Alto Network's globalprotect protocol 2018-11-17 11:26:43 -05:00
Renaud
c102306c1f
Merge pull request #50435 from c0bw3b/pkg/procdump
procdump: init at 1.0.1
2018-11-17 16:25:45 +01:00
c0bw3b
b6c830d2fe procdump: init at 1.0.1 2018-11-17 16:11:53 +01:00
Jörg Thalheim
dfd77bc26f
Merge pull request #50459 from marsam/feature/netdata-darwin
netdata: 1.10.0 -> 1.11.0
2018-11-17 15:01:06 +00:00
Jörg Thalheim
31adf33217
Merge pull request #50473 from Ma27/package-python-nose-cov
pythonPackages.nose-cov: init at 1.6
2018-11-17 11:55:19 +00:00
Jan Malakhovski
9d35a02dab metrics.nix: add a metrick for the current number of packages as seen by nix-env 2018-11-17 10:24:46 +00:00
Michael Raskin
b2d7d177e8
Merge pull request #50482 from c0bw3b/pkg/mdds
mdds: drop 0.7.x and 0.12.x
2018-11-17 07:00:01 +00:00
Austin Seipp
6054dabc11 foundationdb: rework python bindings, build system
FoundationDB uses Python at build time for some code generation.
However, it also has the official python bindings inside the source code
too, and the code for the Python bindings has some of it auto-generated
at compile time.

This made building python packages unattractive: we want to use the
source code generated from the FoundationDB build, but we don't want to
rebuild it. Previously we would override the 'python' input to the
FoundationDB module, but this meant we would do a complete rebuild, as
it was a necessary build time dependency, even though the resulting
generated code itself would not change. Furthermore, FoundationDB
versions < 6.0 don't properly support Python 3 *for the build system*,
though the bindings supported it, so that caused build failures. But the
first effect is the worst: it meant building separate python2 and
python3 packages implied two complete rebuilds of a single FoundationDB
version. This meant rather than 3 FDB builds, we'd do 3*N where N = the
number of major Python versions we support.

Finally, because we did not use pip to generate a wheel that we install
with metadata recorded for the installation, the FoundationDB python
package couldn't be used as an input to other setup.py-based packages:
there would be no recorded metadata in the dist-info folder which would
say this is the foundationdb package. This greatly limits its utility.

To fix all this, we do a few things:

  - Apply some patches to fix the build system with Python 3.x for
    older FoundationDB versions. (This is nice if end-users have
    overridden the global Python version for some reason.)
  - Move python directly into nativeBuildInputs, so it is only a
    build time dependency.
  - Take the python source code from the ./bindings directory and
    tar it up use later after the build is done, so we get to keep
    the generated code. This is the new 'pythonsrc' output from the
    build. This code doesn't change based on whether or not the input
    or resulting package is using Python 2 or 3, it's totally
    deterministic.
  - The build system also patches up the python source code a little,
    so it can be installed directly with setup.py (it needs a little
    stuff that it normally expects the build system to do.)
  - Rework the python package to a separate file that uses
    buildPythonPackage directly. Because the source code is already
    prepared, it needs almost nothing else. Furthermore, this kills
    the override itself for the foundationdb package, meaning rebuilds
    are no longer needed.
  - This package is very simple and just uses foundationdb.pythonsrc
    as its source input. It also ensures a link to libfdb_c.so can
    be found by ctypes (using substituteInPlace)
  - python-packages.nix now just uses callPackage directly.

The net effect of this is, most importantly, that python packages do not
imply a full rebuild of the server source code: building python2 and
python3 packages from a version of FoundationDB now does not need to
override the foundationdb python input, reducing the number of needless
builds. They instead just run setup.py with the given version as input.

The second biggest effect is that wheel metadata is recorded correctly,
meaning dependent-python-packages that want to use the FoundationDB
bindings e.g. from PyPi should now work fine with buildPythonPackage.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-16 20:34:19 -06:00
c0bw3b
18f95bd6ba mdds: drop 0.7.x and 0.12.x 2018-11-17 00:02:48 +01:00
Jörg Thalheim
25d6dc99bb
nodePackages: 8_x -> 10_x 2018-11-16 21:31:44 +00:00
Jörg Thalheim
d688cedce1
create-cycle-app: unpin nodePackages version 2018-11-16 21:24:26 +00:00
Kevin Liu
624966ab69
ibus-table-chinese: init at 1.8.2 2018-11-16 15:55:03 -05:00
Maximilian Bosch
c59c9a3737
pythonPackages.nose-cov: init at 1.6
Module for coverage reports with Python using nosetests.
2018-11-16 21:41:06 +01:00
Linus Heckemann
d1eb06cb18
Merge pull request #50434 from bcdarwin/nifty_reg
niftyreg: init at 1.3.9; niftyseg: init at 1.0.0
2018-11-16 20:13:12 +01:00
Ben Darwin
cb6d819b93 niftyseg: init at 1.0.0 2018-11-16 12:29:29 -05:00
Ben Darwin
6aa3deeb50 niftyreg: init at 1.3.9 2018-11-16 12:24:53 -05:00
Mario Rodas
49ac683e70 netdata: 1.10.0 -> 1.11.0 2018-11-16 11:24:27 -05:00
Maximilian Güntner
e40eb38dd4
mxisd: init at 1.2.0 2018-11-16 16:43:29 +01:00
Jörg Thalheim
64f66db499
Merge pull request #49791 from Gerschtli/add/apcu-bc
php72Packages.apcu_bc: init at 1.0.4
2018-11-16 15:18:01 +00:00
Jörg Thalheim
56a0533128
valauncher: remove
I no longer use/maintain this software.
see: https://github.com/Mic92/valauncher
2018-11-16 00:36:33 +00:00
Sebastien Maret
bc64d58866 astroquery: init at 0.3.8 (#50360)
Co-Authored-By: smaret <sebastien.maret@icloud.com>
2018-11-15 23:11:41 +00:00
Jörg Thalheim
9d53806ef3
Merge pull request #50379 from ptrhlm/anki
anki: 2.0.52 -> 2.1.6-beta1, fixes #46599, fixes #45726
2018-11-15 22:37:15 +00:00
Piotr Halama
a30e30432d anki: 2.0.52 -> 2.1.6-beta1 2018-11-15 23:17:31 +01:00
Piotr Bogdan
2c60a41d0a gnumake3: remove 2018-11-15 17:41:25 +00:00
Piotr Bogdan
5d0eeeee38 coq2html: switch to default make 2018-11-15 17:41:25 +00:00
Jörg Thalheim
8d275f6d17
Merge pull request #50314 from dywedir/wl-clipboard
wl-clipboard: init at 1.0.0
2018-11-15 15:59:15 +00:00
Léo Gaspard
0483ce0eee
rss2email module: init
Also adding `system-sendmail` package for sharing the code with other
modules or packages needing it.
2018-11-15 23:44:16 +09:00
Orivej Desh
101133deae fasm: init at 1.73.04 (#50378) 2018-11-15 13:20:00 +00:00
Jörg Thalheim
e922a458ca
Merge pull request #50243 from tathougies/travis/hash-diff
perlPackages.HashDiff: init at 0.010
2018-11-15 11:30:13 +00:00
Jörg Thalheim
9afa6f74e5
Merge pull request #50381 from kalbasit/nixpkgs_vim-go-use-go-motion
vimPlugins.vim-go: use the correct motion derivation for the dependency
2018-11-15 11:14:48 +00:00
Travis Athougies
bdb03ef4e8 Add description and license to HashDiff 2018-11-14 21:59:44 -08:00
Will Dietz
b1e5910a7d elfinfo: init at 0.7.4 2018-11-14 23:33:10 -06:00
Wael M. Nasreddine
a9e2b3853f
go-motion: init unstable at 2018-04-09 2018-11-14 18:28:10 -08:00
Jörg Thalheim
552c223625
nodePackages.statsd: remove
The package/service is broken. Upstream is dead
2018-11-14 18:32:44 +00:00
Matthew Bauer
0874ee8f05
Merge pull request #47684 from roberth/nixpkgs-nixosTest
Add pkgs.nixosTest
2018-11-14 11:20:46 -06:00
Jörg Thalheim
4c3e9a7d06
Merge pull request #50354 from pbogdan/miro-remove
miro: remove
2018-11-14 17:09:10 +00:00
Piotr Bogdan
b8d0810e98 miro: remove 2018-11-14 15:59:18 +00:00
Matthew Bauer
2e18ba6c5a
Merge pull request #49776 from matthewbauer/atlas-remove
atlas: remove
2018-11-13 19:18:35 -06:00
Matthew Bauer
73951bc0c8
Merge pull request #50293 from matthewbauer/cleanups2
Add setup-hooks for scons and waf
2018-11-13 19:17:00 -06:00
Matthew Bauer
06c403e846 treewide: remove unstable packages
There’s nothing wrong with unstable packages when they are maintained
and frequently updated. However, when they become out-of-date, as many
do, it is usually best to just get rid of them as the stable version
is become newer than the unstable version. This removes any packages
called "unstable" that have not been updated in over 1 year. Affected
packages include:

- isyncUnstable
- sxhkd-unstable
- dosbox-unstable

Revert "treewide: remove unstable packages"

This reverts commit df01b0b37a04624cfe6f8d2ccb42b99289841b68.
2018-11-13 19:14:44 -06:00
Matthew Bauer
92ebfa1383 wafHook: init
The waf build system is python-based and hosted locally in each package in the executable file named "waf". Unlike CMake, it cannot generate makefiles so we end up having to override the configure, build, and install phases. I've tried to keep these as close to what's in setup.sh as possible. If there is no waf file in the root directory, then we just copy the one hosted in Nixpkgs. Otherwise the only thing you have to add to a package using Waf is "wafHook" into nativeBuildInputs. wafFlags controls the flags specifically passed to waf while configureFlags, buildFlags, and installFlags are still used as in the generic builder.
2018-11-13 19:13:13 -06:00
markuskowa
2823b5e698
Merge pull request #46667 from costrouc/costrouc/lammps-update
lammps: update, hoomd-blue, dl_poly: init
2018-11-13 21:00:02 +01:00
Matthew Bauer
f9a6963d9a
Merge pull request #50244 from tathougies/travis/wrap-correctly
make-wrapper should use runtimeShell, not $SHELL, for cross-compilation
2018-11-13 13:55:26 -06:00
Vladyslav Mykhailichenko
1c26439bab
wl-clipboard: init at 1.0.0 2018-11-13 17:20:13 +02:00
Robert Schütz
66ba870c7f
Merge pull request #50274 from peterhoeg/f/ha
home-assistant: add support for waze, bluetooth tracker and  IFTTT
2018-11-13 14:31:40 +01:00
Robert Hensing
5a8bddf16c pkgs.nixosTest: Emphasize propagation of pkgs 2018-11-13 10:47:17 +01:00
Robert Hensing
d82e1528f8 pkgs.nixosTest: format 2018-11-13 10:47:16 +01:00
Robert Hensing
cdca66d7e8 Add pkgs.nixosTest 2018-11-13 10:43:05 +01:00
Robert Hensing
dd3aca2d0b
Merge pull request #49256 from roberth/nixos-nixpkgs-pkgs-use-overlays
NixOS: use overlays when nixpkgs.pkgs is set
2018-11-13 09:55:24 +01:00
lewo
5189877d34
Merge pull request #50247 from romildo/upd.jxrlib
jxrlib: init at 1.1
2018-11-13 08:59:32 +01:00
Orivej Desh
2372852957 flex_2_5_35: replace with flex 2.6.4 in coprthr, gradm, maude, scotch 2018-11-13 03:40:53 +00:00
Peter Hoeg
d7691e0c0b pythonPackages.bt_proximity: init at 0.0.20180217 2018-11-13 10:49:13 +08:00
Orivej Desh
5b4044ab55 flex_2_6_1: delete in favor of flex 2.6.4 (#50292) 2018-11-13 01:59:55 +00:00
Samuel Dionne-Riel
9c86aca362
Merge pull request #48738 from Amar1729/init/argp-standalone
argp-standalone: init at 1.3
2018-11-12 23:52:01 +00:00
Samuel Dionne-Riel
c99cb8fe83
Merge pull request #47197 from tg-x/ltc-tools-0.6.4
ltc-tools: init at 0.6.4
2018-11-12 23:39:12 +00:00
Samuel Dionne-Riel
8e2a9dae82
Merge pull request #47987 from erictapen/scribus-unstable
scribusUnstable: init at 2018-10-13
2018-11-12 23:29:53 +00:00
Samuel Dionne-Riel
0c38e68d39
Merge pull request #49356 from gnidorah/qtcurve
qtcurve: init at 1.9
2018-11-12 23:28:19 +00:00
Samuel Dionne-Riel
5b606cc60a
Merge pull request #47511 from nlewo/pr-gremlin
gremlin-console: init at 3.3.3
2018-11-12 23:25:29 +00:00
John Ericson
ffa75ae405
Merge pull request #50282 from vincrusher/master
Cross-Compiling: alpha-embedded Support Added
2018-11-12 15:57:23 -05:00
Vincent Weisner
04fe84d239
Cross-Compiling: alpha-embedded Support Added
This commit adds support for Embedded systems with DEC Alpha CPUs.
2018-11-12 15:00:50 -05:00
Chris Ostrouchov
c618667bd3 pythonPackages.ovito: init at 3.0.0 2018-11-12 20:06:02 +01:00
Frederik Rietdijk
3b052406ea Merge staging-next into staging 2018-11-12 19:01:36 +01:00
Frederik Rietdijk
daf3297cb4 Merge master into staging-next 2018-11-12 18:59:08 +01:00
Antoine Eiche
28e08aa254 gremlin-console: init at 3.3.4 2018-11-12 18:12:20 +01:00
Jörg Thalheim
3fd80c6215
Merge pull request #49557 from symphorien/rust-system-libs
rustc: build with system llvm and jemalloc
2018-11-12 14:50:04 +00:00
Peter Hoeg
4bdd7496ba pythonPackages.WazeRouteCalculator: init 0.6 2018-11-12 21:49:02 +08:00
Peter Hoeg
ff795bd45f pythonPackages.pyfttt: init at 0.3.2 2018-11-12 20:55:33 +08:00
Robert Schütz
b9494ac352
Merge pull request #50166 from dotlambda/home-assistant-0.82
home-assistant: 0.81.5 -> 0.82.0
2018-11-12 11:37:06 +01:00
Jörg Thalheim
92c478babd
Merge pull request #50176 from Mic92/docker-componse
docker-compose: rename from docker_compose, python3 by default
2018-11-12 10:14:53 +00:00
Robert Schütz
92148ea5a0 python3.pkgs.homeassistant-pyozw: init at 0.1.0 2018-11-12 11:10:12 +01:00
Chris Ostrouchov
484a5c6152 pythonPackages.ruamel_yaml: refactor move to python-modules 2018-11-12 11:10:02 +01:00
Robert Schütz
b230ad0e29 python.pkgs.protobuf3_1: drop
Using the specific version of protobuf can be achieved by a simple
`python.pkgs.protobuf.override { protobuf = protobuf3_1; }`.
2018-11-12 11:10:02 +01:00
TG ⊗ Θ
46a46db8c1 ltc-tools: init at 0.6.4 2018-11-12 06:51:28 +01:00
Samuel Dionne-Riel
49df3150c7
Merge pull request #49451 from fgaz/sfxr-qt/init
sfxr-qt: init at 1.2.0
2018-11-12 04:21:40 +00:00
Samuel Dionne-Riel
242282d92d
Merge pull request #47887 from mmlb/python-dpath
pythonPackages.dpath: init at 1.4.2
2018-11-12 03:51:56 +00:00
Samuel Dionne-Riel
63399aea74
Merge pull request #50252 from fuerbringer/diskus
diskus: init at 0.4.0
2018-11-12 03:42:07 +00:00
Samuel Dionne-Riel
d746c53e2e
Merge pull request #46845 from Twey/plyplus
python2Packages.plyplus: init at 0.7.5
2018-11-12 03:31:26 +00:00
John Ericson
df9334b646
Merge pull request #50233 from Ekleog/fix-test-system
Fix meta.tests system
2018-11-11 19:05:13 -05:00
fuerbringer
fa4aa79892
diskus: init at 0.4.0 2018-11-12 00:16:59 +01:00
Samuel Dionne-Riel
9997a3dc16
Merge pull request #43686 from Pneumaticat/rdocker-init
rdocker: init at unstable-2018-07-17
2018-11-11 22:42:04 +00:00
José Romildo Malaquias
546191f4cf jxrlib: init at 1.1 2018-11-11 18:36:55 -02:00
Travis Athougies
9531a32b60 make-wrapper should use runtimeShell, not bash, for cross-compilation 2018-11-11 10:25:05 -08:00
Travis Athougies
fa9fc8fbc6 Add HashDiff package 2018-11-11 10:23:41 -08:00
Jason Hilton
7759fe1f22
catch2: init at 2.4.2 2018-11-11 17:55:31 +01:00
Léo Gaspard
6aedf6a5c8
nixosTests: use the newly-extracted all-tests.nix 2018-11-11 23:20:17 +09:00
Frederik Rietdijk
1d3bff25db Merge staging-next into staging 2018-11-11 14:28:08 +01:00
Jörg Thalheim
7a86bc32cb
docker-compose: rename from docker_compose, python3 by default
The command is called docker-compose hence the package should be called the same.
Also prefer python3.
2018-11-11 11:16:44 +00:00
Jörg Thalheim
290eb75678
Merge pull request #50224 from volth/sed-windows
gnused: fix Windows build
2018-11-11 10:53:04 +00:00
Sebastien Maret
880fae6a08 matplotlib: 2.2.3 -> 3.0.2
Python 3 will use the new matplotlib 3.x while Python 2
will use 2.x.

matplotlib: keep 2.2.3 for Python2k
2018-11-11 10:14:25 +01:00
Frederik Rietdijk
961180afc8 scour: call via python-packages.nix 2018-11-11 09:54:28 +01:00
Frederik Rietdijk
7863aae5b2 Merge master into staging-next 2018-11-11 08:59:44 +01:00
Jethro Kuan
baeb8bd5a7 gin-config: init 2018-11-11 08:39:19 +01:00
volth
9d164580ba gnused: fix Windows build 2018-11-11 06:58:15 +00:00
Orivej Desh
bad54d8704 gargoyle: 2017-08-27 -> 2018-10-06 2018-11-11 03:42:39 +00:00
Jan Tojnar
cf7e7127c5
Merge pull request #48270 from Melkor333/wpgtk
wpgtk: init at 5.7.4
2018-11-11 04:01:24 +01:00
Silvan Mosberger
32cbcbf179
Merge pull request #50018 from Ma27/init-up
up: init at 0.3.1
2018-11-11 02:46:03 +01:00
markuskowa
45a4adb1b3
Merge branch 'master' into atlas-remove 2018-11-11 02:22:04 +01:00
Paul TREHIOU
0f21becbab spaceship-prompt: init at 3.7.1 (#50177)
* spaceship-prompt: init at 3.7.1

* spaceship-prompt: useless zsh argument
2018-11-11 02:17:57 +01:00
Silvan Mosberger
a7da00d53c
Merge pull request #44076 from hlolli/lumo
lumo: init at 1.9.0-alpha
2018-11-11 01:26:36 +01:00
Maximilian Bosch
fbc02d6ce4
Merge pull request #49853 from marsam/feature/update-pgcli
pythonPackages.prompt_toolkit: init at 2.0.7
pgcli: 1.11.0 -> 2.0.0
xonsh: 0.6.8 -> 0.8.3
pythonPackages.ptpython: 0.41 -> 2.0.4
2018-11-11 00:39:38 +01:00
Mario Rodas
e15ef48c80
pythonPackages.ptpython: 0.41 -> 2.0.4 2018-11-10 23:45:52 +01:00
Jörg Thalheim
7ce08cb18e
Merge pull request #48899 from markuskowa/clean-rdma
libibverbs,librdmacm: remove in favour of rdma-core
2018-11-10 22:01:43 +00:00
Jörg Thalheim
0c9b49dfe2
Merge pull request #49841 from makefu/pkgs/hovercraft/update
hovercraft: 2.0 -> 2.6
2018-11-10 21:37:53 +00:00
Tim Steinbach
ab77043c56
linux: 4.9.135 -> 4.9.136 2018-11-10 16:12:38 -05:00
hlolli
0e134bfa34 Lumo init at 1.9.0 2018-11-10 21:52:48 +01:00
Johannes Frankenau
dc14808c09 fusuma: init at 0.10.2 2018-11-10 17:30:00 +01:00
Mario Rodas
0270dda6b4 pythonPackages.prompt_toolkit: init at 2.0.7 2018-11-10 10:06:56 -05:00
Melkor333
5d53675c2f wpgtk: init at 5.7.4 2018-11-10 15:32:59 +01:00
Silvan Mosberger
9c984b06c4
Merge pull request #38514 from disassembler/grafana-reporter
grafana-reporter: init at 2.0.1
2018-11-10 15:15:21 +01:00
Silvan Mosberger
d5c5c5c4d1
Merge pull request #49827 from Twey/click-repl
pythonPackages.click-repl: init at 0.1.6
2018-11-10 15:03:48 +01:00
Daiderd Jordan
8d603be22d
Merge pull request #49880 from LnL7/darwin-cfprivate-fixes
darwin cf-private fixes
2018-11-10 15:03:21 +01:00
Frederik Rietdijk
53d00c3351 Merge master into staging-next 2018-11-10 11:08:54 +01:00
John Ericson
d6811499d1
Merge pull request #49714 from roberth/haskell-bash-completion-2
haskellPackages: Add shell completions
2018-11-09 19:55:41 -05:00
Samuel Dionne-Riel
2f668e3248
Merge pull request #40043 from kierdavis/ckb-update-and-cleanup
ckb/ckb-next: 0.2.9 -> 0.3.2, and cleanup
2018-11-09 23:59:58 +00:00
Vladyslav M
20747f196c
Merge pull request #50069 from dywedir/standardnotes
standardnotes: init at 2.3.12
2018-11-09 23:15:35 +02:00
MGregoire
db8f4ff49c
standardnotes: init at 2.3.12 2018-11-09 22:41:00 +02:00
Michael Raskin
74f3d2f8c8
Merge pull request #50054 from samueldr/fixes/libreoffice-misc
Fixes weird mismatch with libreoffice and libreoffice-unwrapped.
2018-11-09 20:04:49 +00:00
Wael M. Nasreddine
205960e1d1
trim trailing whitespace from top-level/all-packages 2018-11-09 11:27:39 -08:00
Samuel Dionne-Riel
1430f1c0d0 libreoffice-*: changes attributes structure for *-unwrapped
libreoffice-unwrapped points to the same libreoffice than libreoffice.
libreoffice-*-unwrapped exists for all versions

This bring an incompatible change where a user using
`libreoffice-unwrapped` hoping to use `fresh` would now be inadvertently
be using `still`.
2018-11-09 14:06:09 -05:00
Renaud
0fcf1989da
Merge pull request #49737 from cocreature/yacreader
yacreader: init at 9.5.0, libunarr: init at 1.0.1
2018-11-09 18:29:40 +01:00
Moritz Kiefer
d52de90dba yacreader: init at 9.5.0, libunarr: init at 1.0.1 2018-11-09 17:46:30 +01:00
Renaud
f0dc3b64c1
Merge pull request #49956 from kalbasit/nixpkgs_add-archiver
archiver: init at 3.0.0
2018-11-09 17:09:45 +01:00
Wael M. Nasreddine
897bce9b83
archiver: init at 3.0.0 2018-11-09 07:22:35 -08:00
Renaud
e738c1084b
Merge pull request #49867 from marsam/feature/init-pgmetrics
pgmetrics: init at 1.5.0
2018-11-09 15:17:14 +01:00
Maximilian Bosch
0045ea5b10
up: init at 0.3.1
With this tool you can interactively write shell pipes with a previewed
intermediate result.

See https://github.com/akavel/up
2018-11-09 14:14:39 +01:00
Jan Tojnar
d719a6eddc
Merge pull request #49889 from worldofpeace/lollypop-drop-portal
lollypop-portal: drop
2018-11-09 12:17:14 +01:00
Renaud
8c9a66412b
Merge pull request #49554 from manveru/add-kexpand
kexpand: init at 2017-05-12
2018-11-09 10:53:46 +01:00
Renaud
a232d0b210
Merge pull request #49689 from taku0/adoptopenjdk-bin-11.0.1-openj9
adoptopenjdk-openj9-bin: 11 -> 11.0.1 [Critical security fixes]
2018-11-09 10:31:27 +01:00
markuskowa
66b8fe5a0b
Merge pull request #49943 from spacekookie/ly
ly: init at 0.1.2
2018-11-08 23:34:44 +01:00
Renaud
4cd4f7a2c5
qbs: 1.8 -> 1.12.1
(#49869)
2018-11-08 22:59:17 +01:00
Sander van der Burg
1ac07c82e1 alerta: init at 6.3.2 2018-11-08 22:32:31 +01:00
Katharina Fey
a6d0b9c5b5
ly: init at 0.2.1 2018-11-08 21:40:00 +01:00
Austin Seipp
7676dc7b9b ber_metaocaml: 104 -> 107
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-08 13:37:07 -06:00
Daiderd Jordan
a06e7c5b19
Merge pull request #49284 from LnL7/darwin-watchexec
watchexec: fix darwin build
2018-11-08 20:04:47 +01:00
Domen Kožar
068374c0ae Add chrome-token-signing 2018-11-08 18:05:01 +00:00
Peter Simons
357554ae89 ghc: drop unused 7.10.3-binary compiler 2018-11-08 17:39:13 +01:00
John Ericson
ebd1dd54e5 Merge remote-tracking branch 'upstream/master' into haskell-bash-completion-2 2018-11-08 11:28:53 -05:00
Robert Hensing
2a1c0dde8f haskellPackages: Add shell completions + improve docs
This adds the remaining parts of #42657 on top of #49477, renames the
function to a better name, and improves the docs
2018-11-08 11:28:11 -05:00
Tim Steinbach
ff2b0316b4
docker: 18.06.1 -> 18.09 2018-11-08 08:40:33 -05:00
Symphorien Gibol
4b0d441cc4 rustc: build with system llvm and jemalloc
Just like fedora does: https://src.fedoraproject.org/rpms/rust/blob/master/f/rust.spec

Also some cleanup of tests which were removed but no longer exist.
2018-11-08 13:04:37 +01:00
Robert Hensing
cd80aee989 acsccid: init at 1.1.6 2018-11-08 10:44:50 +00:00
Tim Steinbach
451126ea6e
subversion: init 1.11.0 2018-11-07 20:22:03 -05:00
Silvan Mosberger
2bdec61194
Merge pull request #48765 from wykurz/cpuset
cpuset: init at 1.5.8
2018-11-08 01:58:50 +01:00
Daiderd Jordan
14e41fe461
opencv: add cf-private on darwin
Undefined symbols for architecture x86_64:
      "_NSDefaultRunLoopMode", referenced from:
          _cvWaitKey in window_cocoa.mm.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in window_cocoa.mm.o
          objc-class-ref in cap_qtkit.mm.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in window_cocoa.mm.o
          objc-class-ref in cap_qtkit.mm.o
      "_OBJC_CLASS_$_NSMutableDictionary", referenced from:
          objc-class-ref in window_cocoa.mm.o
      "_OBJC_CLASS_$_NSRunLoop", referenced from:
          objc-class-ref in cap_qtkit.mm.o
      "_OBJC_CLASS_$_NSTimer", referenced from:
          objc-class-ref in cap_qtkit.mm.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 23:47:25 +01:00
Daiderd Jordan
33104363af
noti: add cf-private on darwin
Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in _x002.o
      "_OBJC_CLASS_$_NSRunLoop", referenced from:
          objc-class-ref in _x002.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 23:47:25 +01:00
Daiderd Jordan
0b45d5b8f9
libui: add cf-private on darwin
Undefined symbols for architecture x86_64:
      "_NSDefaultRunLoopMode", referenced from:
          _uiMainStep in main.m.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in main.m.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in multilineentry.m.o
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in alloc.m.o
          objc-class-ref in box.m.o
          objc-class-ref in menu.m.o
          objc-class-ref in radiobuttons.m.o
          objc-class-ref in tab.m.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 23:47:24 +01:00
Daiderd Jordan
be9fc0d669
keybase: add cf-private on darwin
Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_NSData", referenced from:
          objc-class-ref in _x002.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in _x002.o
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in _x002.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 23:47:24 +01:00
Daiderd Jordan
388a868d6d
glfw: add cf-private on darwin
Undefined symbols for architecture x86_64:
      "_NSDefaultRunLoopMode", referenced from:
          __glfwPlatformPollEvents in cocoa_window.m.o
          __glfwPlatformWaitEvents in cocoa_window.m.o
          __glfwPlatformWaitEventsTimeout in cocoa_window.m.o
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in cocoa_window.m.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in cocoa_window.m.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 23:47:24 +01:00
Daiderd Jordan
78623f492c
fltk: add cf-private on darwin
Undefined symbols for architecture x86_64:
      "_NSDefaultRunLoopMode", referenced from:
          fl_open_display() in Fl_cocoa.o
          fl_ready() in Fl_cocoa.o
          fl_wait(double) in Fl_cocoa.o
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in Fl_cocoa.o
      "_OBJC_CLASS_$_NSData", referenced from:
          objc-class-ref in Fl_Sys_Menu_Bar.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in Fl_cocoa.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in Fl_cocoa.o
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in Fl_Native_File_Chooser_MAC.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 23:47:24 +01:00
Daiderd Jordan
c60816c523
emacsMacport: add cf-private
Also remove incorrect emacs25Macport alias.

    Undefined symbols for architecture x86_64:
      "_CFNotificationCenterAddObserver", referenced from:
          _mac_term_init in macterm.o
          _macfont_copy_available_families_cache in macfont.o
      "_CFNotificationCenterGetDistributedCenter", referenced from:
          _mac_term_init in macterm.o
      "_CFNotificationCenterGetLocalCenter", referenced from:
          _macfont_copy_available_families_cache in macfont.o
      "_CFURLCopyResourcePropertyForKey", referenced from:
          _Fmac_file_alias_p in mac.o
      "_CFURLCreateBookmarkDataFromFile", referenced from:
          _Fmac_file_alias_p in mac.o
      "_CFURLCreateByResolvingBookmarkData", referenced from:
          _Fmac_file_alias_p in mac.o
      "_CFURLResourceIsReachable", referenced from:
          _mac_update_title_bar in macfns.o
          _mac_input_source_properties in macfns.o
      "_NSDefaultRunLoopMode", referenced from:
          -[NSApplication(Emacs) runTemporarilyWithBlock:] in macappkit.o
          ___57-[EmacsController handleQueuedNSEventsWithHoldingQuitIn:]_block_invoke in macappkit.o
          _mac_run_loop_run_once in macappkit.o
          ___mac_run_loop_run_once_block_invoke in macappkit.o
          ___37-[EmacsController(Menu) trackMenuBar]_block_invoke in macappkit.o
          ___create_and_show_dialog_block_invoke.2445 in macappkit.o
          ___mac_select_block_invoke in macappkit.o
          ...
      "_NSURLAttributeModificationDateKey", referenced from:
          _mac_document_create_with_url in macappkit.o
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSData", referenced from:
          l_OBJC_$_CATEGORY_NSData_$_Emacs in macappkit.o
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSMethodSignature", referenced from:
          l_OBJC_$_CATEGORY_NSMethodSignature_$_Emacs in macappkit.o
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          l_OBJC_$_CATEGORY_NSMutableArray_$_Emacs in macappkit.o
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSMutableData", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSMutableDictionary", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSMutableSet", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSNull", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSRunLoop", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSSet", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSTimer", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_CLASS_$_NSUserDefaults", referenced from:
          objc-class-ref in macappkit.o
      "_OBJC_EHTYPE_$_NSException", referenced from:
          GCC_except_table81 in macappkit.o
          GCC_except_table810 in macappkit.o
      "_kCFURLIsAliasFileKey", referenced from:
          _Fmac_file_alias_p in mac.o
      "_kCFURLIsSymbolicLinkKey", referenced from:
          _Fmac_file_alias_p in mac.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 23:47:19 +01:00
worldofpeace
d21a93557b lollypop-portal: drop
No longer needed since lollypop 0.9.600.
2018-11-07 16:41:28 -05:00
Matthew Bauer
f2c49bd4cb aliases: remove liblapackWithAtlas
This doesn’t make any sense to keep - we don’t have a liblapack with
atlas anymore.
2018-11-07 13:26:09 -06:00
Matthew Bauer
865cbd380d darwin-tested: readd wireshark
It has been working for some time on darwin and can be added to our
blocking job list.
2018-11-07 13:02:51 -06:00
Peter Simons
ca51000e58 haskell.packages.ghc843: drop obsolete package set
The underlying compiler is already gone.

Fixes https://github.com/NixOS/nixpkgs/issues/49877.
2018-11-07 19:41:00 +01:00
Daiderd Jordan
b378760b08
emacs25: add cf-private on darwin and don't propagate frameworks
Undefined symbols for architecture x86_64:
      "_CFNotificationCenterAddObserver", referenced from:
          _macfont_copy_available_families_cache in macfont.o
      "_CFNotificationCenterGetLocalCenter", referenced from:
          _macfont_copy_available_families_cache in macfont.o
      "_NSDefaultRunLoopMode", referenced from:
          _ns_send_appdefined in nsterm.o
          -[EmacsApp run] in nsterm.o
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsmenu.o
          objc-class-ref in nsselect.o
      "_OBJC_CLASS_$_NSData", referenced from:
          objc-class-ref in nsimage.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in nsterm.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in macfont.o
      "_OBJC_CLASS_$_NSLocale", referenced from:
          objc-class-ref in nsterm.o
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsmenu.o
      "_OBJC_CLASS_$_NSMutableDictionary", referenced from:
          objc-class-ref in nsmenu.o
          objc-class-ref in nsselect.o
      "_OBJC_CLASS_$_NSMutableSet", referenced from:
          objc-class-ref in nsterm.o
      "_OBJC_CLASS_$_NSRunLoop", referenced from:
          objc-class-ref in nsmenu.o
      "_OBJC_CLASS_$_NSTimer", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsmenu.o
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsfns.o
      "_OBJC_CLASS_$_NSUserDefaults", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsfns.o
      "_OBJC_EHTYPE_$_NSException", referenced from:
          GCC_except_table8 in nsterm.o
          GCC_except_table1 in nsselect.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 19:18:17 +01:00
Daiderd Jordan
ee1c6f62f8
darwin.trash: add cf-private
Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in trash-571f39.o
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in trash-571f39.o
      "_OBJC_CLASS_$_NSUserDefaults", referenced from:
          objc-class-ref in trash-571f39.o
          objc-class-ref in HGCLIUtils-31f3b3.o
    ld: symbol(s) not found for architecture x86_64
2018-11-07 19:15:43 +01:00
Daiderd Jordan
16a54d6b2b
alacritty: add cf-private on darwin
note: Undefined symbols for architecture x86_64:
            "_CFURLResourceIsReachable", referenced from:
                alacritty::config::Monitor:🆕:_$u7b$$u7b$closure$u7d$$u7d$::h8c82fbfba8a3a673 in alacritty-6a8d3226ed5c4bef.alacritty.9tpyu7jw-cgu.1.rcgu.o
            "_NSDefaultRunLoopMode", referenced from:
                alacritty::main::hd6e46019b2208595 in alacritty-6a8d3226ed5c4bef.alacritty.9tpyu7jw-cgu.1.rcgu.o
          ld: symbol(s) not found for architecture x86_64
          clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
2018-11-07 19:10:34 +01:00
James Kay
c3668db824
python2Packages.plyplus: init at 0.7.5 2018-11-07 17:56:52 +00:00
Christian Albrecht
c5e8ae3f0b vagrant: do withLibvitr by default #49220 2018-11-07 17:46:57 +01:00
Christian Albrecht
7ed92b1497 vagrant-libvirt: init at 2.2.0
Adds a flag and a new package to build vagrant with libvirt support,
to be able to install and use the vagrant-libvirt plugin.
2018-11-07 17:46:57 +01:00
Maximilian Bosch
8c68a7d41d
Merge pull request #49828 from Twey/autologging
pythonPackages.autologging: init at 1.2.1
2018-11-07 17:30:17 +01:00
James Kay
a7c122bd65
pythonPackages.click-repl: init at 0.1.6 2018-11-07 15:29:04 +00:00
James Kay
5fdbec1417
pythonPackages.autologging: init at 1.2.1 2018-11-07 15:28:06 +00:00
makefu
75f5fbe945
hovercraft: 2.0 -> 2.6
move to top-level, use buildPythonApplication
2018-11-07 16:25:48 +01:00
Jörg Thalheim
8debc01cb4
Merge pull request #49822 from marsam/feature/update-flow
flow: 0.80.0 -> 0.85.0
2018-11-07 15:05:57 +00:00
lewo
ea0b564c94
Merge pull request #49837 from knl/add-grpcurl
grpcurl: init at 1.0.0
2018-11-07 15:31:20 +01:00
Robert Schütz
ae50efe353
Merge pull request #49591 from peterhoeg/p/snap
pythonPackages.snapcast: init at 2.0.9
2018-11-07 14:10:35 +01:00
Jörg Thalheim
7e2e6e1131
Merge pull request #49684 from Zimmi48/dune-package
buildDunePackage: add support function and use it in a few packages
2018-11-07 13:01:09 +00:00
Nikola Knežević
e7b61b791b grpcurl: init at 1.0.0 2018-11-07 13:43:24 +01:00
Andy Chun
7ea48e12b7 polar-bookshelf: init at 1.0.11 (#48610)
* polar-bookshelf: init at 1.0.11

* Grab gsettings_desktop_schemas from gnome3

* Explain why we're not building from source

* Use autoPatchelfHook

* Updated license & further cleanup
2018-11-07 13:37:27 +01:00
Mario Rodas
780a3ffa12 pgmetrics: init at 1.5.0 2018-11-07 06:47:31 -05:00
Sarah Brofeldt
7f58e8dbad
Merge pull request #49429 from das-g/osmium
osmium-tool: init at 1.9.1 incl. dependencies
2018-11-07 10:47:07 +01:00
Brayden Willenborg
e11c3a08b0 gucci: init at 0.1.0 (#49813)
* gucci: init at 0.1.0

* gucci: init at 0.1.0
2018-11-07 10:21:55 +01:00
Théo Zimmermann
794158fcd5
buildDunePackage: new support function; use it to refactor some OCaml derivations 2018-11-07 10:08:03 +01:00
Timo Kaufmann
6141939d6e
Merge pull request #44439 from Ekleog/meta-tests
[RFC] Use `meta.tests` to link from packages to the tests that test them
2018-11-07 00:05:22 +01:00
Daiderd Jordan
b6dcb9e641
Merge pull request #49768 from LnL7/darwin-no-cfprivate
darwin: don't include cf-private in framework dependencies
2018-11-06 20:15:27 +01:00
Daiderd Jordan
ecf7c9c4b4
xorg.xorgserver: add cf-private on darwin
Undefined symbols for architecture x86_64:
      "_NSDefaultRunLoopMode", referenced from:
          _X11ApplicationMain in libXquartz.a(X11Application.o)
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
          objc-class-ref in libXquartz.a(X11Controller.o)
          objc-class-ref in libxpbproxy.a(x-selection.o)
      "_OBJC_CLASS_$_NSData", referenced from:
          objc-class-ref in libxpbproxy.a(x-selection.o)
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in libxpbproxy.a(x-selection.o)
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
          objc-class-ref in libXquartz.a(X11Controller.o)
      "_OBJC_CLASS_$_NSMutableDictionary", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
      "_OBJC_CLASS_$_NSRunLoop", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
      "_OBJC_EHTYPE_$_NSException", referenced from:
          GCC_except_table29 in libxpbproxy.a(x-selection.o)
    ld: symbol(s) not found for architecture x86_64
2018-11-06 19:00:03 +01:00
Daiderd Jordan
2b76ad8fe7
xquartz: add cf-private
Undefined symbols for architecture x86_64:
      "_NSDefaultRunLoopMode", referenced from:
          _X11ApplicationMain in libXquartz.a(X11Application.o)
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
          objc-class-ref in libXquartz.a(X11Controller.o)
          objc-class-ref in libxpbproxy.a(x-selection.o)
      "_OBJC_CLASS_$_NSData", referenced from:
          objc-class-ref in libxpbproxy.a(x-selection.o)
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in libxpbproxy.a(x-selection.o)
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
          objc-class-ref in libXquartz.a(X11Controller.o)
      "_OBJC_CLASS_$_NSMutableDictionary", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
      "_OBJC_CLASS_$_NSRunLoop", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in libXquartz.a(X11Application.o)
      "_OBJC_EHTYPE_$_NSException", referenced from:
          GCC_except_table29 in libxpbproxy.a(x-selection.o)
    ld: symbol(s) not found for architecture x86_64
2018-11-06 18:54:06 +01:00
Daiderd Jordan
f00a4af18f
quartz-wm: add cf-private
Undefined symbols for architecture x86_64:
      "_CFNotificationCenterAddObserver", referenced from:
          _main in main.o
      "_CFNotificationCenterGetDistributedCenter", referenced from:
          _main in main.o
      "_OBJC_CLASS_$_NSTimer", referenced from:
          objc-class-ref in main.o
          objc-class-ref in x-screen.o
      "_OBJC_EHTYPE_$_NSException", referenced from:
          GCC_except_table25 in main.o
    ld: symbol(s) not found for architecture x86_64
2018-11-06 18:48:14 +01:00
Jörg Thalheim
fccfc775d1
Merge pull request #49830 from andrewrk/remove-qgifer
remove qgifer
2018-11-06 15:52:26 +00:00
Jörg Thalheim
bd2111696c
Merge pull request #49815 from kalbasit/nixpkgs_fix-vim-go
vimPlugins: vim-go: make gocode, gocode-mod and keyify available to it
2018-11-06 15:50:18 +00:00
Shea Levy
329bf4c3e1 linux-riscv: Remove.
risc-v changes are now upstream.

See #49490
2018-11-06 09:42:45 -05:00
Andrew Kelley
10e4d63c6c
remove qgifer
I was the one who originally packaged it, but it never really worked
well. I don't think anyone is using it.
2018-11-06 09:41:37 -05:00
Lancelot SIX
1aed180d73
Merge pull request #48914 from lsix/add_pythonPackages_owslib
pythonPackages.owslib: init at 0.17.0
2018-11-06 15:37:53 +01:00
nagato.pain
6a31bbbe8f pythonPackages.libmr: init at 0.1.9 2018-11-06 05:43:20 -08:00
Mario Rodas
36efe7b3aa ocamlPackages.visitors: init at 20171124 2018-11-06 08:06:11 -05:00
Peter Simons
8d81cf6201 ghc: add new version 8.6.2 2018-11-06 10:35:02 +01:00
Wael M. Nasreddine
0f4f5d69a7
gocode-gomod: init unstable at 2018-10-16 2018-11-05 22:13:40 -08:00
Kier Davis
3b7984dd51
Merge branch 'master' into ckb-update-and-cleanup 2018-11-06 00:47:14 +00:00
Patrick Hilhorst
9ec40cc3bf
treewide: Fix overrides having wrong versions 2018-11-06 00:06:21 +01:00
Matthew Bauer
6ba2b84f49 liblapack: add compat aliases 2018-11-05 15:53:05 -06:00
John Ericson
48caae5045 Merge remote-tracking branch 'upstream/master' into HEAD 2018-11-05 15:19:33 -05:00
Daiderd Jordan
f495707eb6 emacs: include cf-private on darwin and don't propagate frameworks
Undefined symbols for architecture x86_64:
      "_CFNotificationCenterAddObserver", referenced from:
          _macfont_copy_available_families_cache in macfont.o
      "_CFNotificationCenterGetLocalCenter", referenced from:
          _macfont_copy_available_families_cache in macfont.o
      "_NSDefaultRunLoopMode", referenced from:
          _ns_send_appdefined in nsterm.o
          -[EmacsApp run] in nsterm.o
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsmenu.o
          objc-class-ref in nsselect.o
      "_OBJC_CLASS_$_NSData", referenced from:
          objc-class-ref in nsimage.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in nsterm.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in macfont.o
      "_OBJC_CLASS_$_NSLocale", referenced from:
          objc-class-ref in nsterm.o
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsmenu.o
      "_OBJC_CLASS_$_NSMutableDictionary", referenced from:
          objc-class-ref in nsmenu.o
          objc-class-ref in nsselect.o
      "_OBJC_CLASS_$_NSMutableSet", referenced from:
          objc-class-ref in nsterm.o
      "_OBJC_CLASS_$_NSRunLoop", referenced from:
          objc-class-ref in nsmenu.o
      "_OBJC_CLASS_$_NSTimer", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsmenu.o
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsfns.o
      "_OBJC_CLASS_$_NSUserDefaults", referenced from:
          objc-class-ref in nsterm.o
          objc-class-ref in nsfns.o
      "_OBJC_EHTYPE_$_NSException", referenced from:
          GCC_except_table8 in nsterm.o
          GCC_except_table1 in nsselect.o
    ld: symbol(s) not found for architecture x86_64
2018-11-05 21:16:58 +01:00
Daiderd Jordan
86bf715c49
contacts: add cf-private
Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in contacts.o
          objc-class-ref in FormatHelper.o
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in FormatHelper.o
    ld: symbol(s) not found for architecture x86_64
2018-11-05 20:35:06 +01:00
Daiderd Jordan
d4b7c2b88f
vim: add cf-private on darwin
Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in os_macosx.o
    ld: symbol(s) not found for architecture x86_64
2018-11-05 20:30:02 +01:00
John Ericson
d94d220b84
Merge pull request #49795 from obsidiansystems/fix-pkgsFor
release-lib: Fix `pkgsFor`
2018-11-05 14:18:16 -05:00
Daiderd Jordan
7fd359f2f9
pinentry_mac: add cf-private
Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in GPGDefaults.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in PinentryController.o
          objc-class-ref in GPGDefaults.o
          objc-class-ref in KeychainSupport.o
      "_OBJC_CLASS_$_NSMutableDictionary", referenced from:
          objc-class-ref in GPGDefaults.o
      "_OBJC_CLASS_$_NSSet", referenced from:
          objc-class-ref in GPGDefaults.o
      "_OBJC_CLASS_$_NSUserDefaults", referenced from:
          objc-class-ref in GPGDefaults.o
    ld: symbol(s) not found for architecture x86_64
2018-11-05 19:57:12 +01:00
Daiderd Jordan
c8e480b4da
atomicparsley: include cf-private on darwin
Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in nsfile.o
          objc-class-ref in nsimage.o
    ld: symbol(s) not found for architecture x86_64
2018-11-05 19:13:33 +01:00
John Ericson
8d99a3455b release-lib: Fix pkgsFor 2018-11-05 11:27:50 -05:00
Tobias Happ
bf73d9ec98 php72Packages.apcu_bc: init at 1.0.4 2018-11-05 17:25:52 +01:00
aszlig
b162b40007
ip2unix: init at 1.0.0
This tool was initially built specifically for nixcloud to prevent a few
annoying programs from binding to IP sockets.

While initially only accepting a JSON file as input, the tool now has a
proper command line interface and it's also generally usable to turn IP
sockets of any program into Unix sockets.

Another thing that might be even useful for NixOS modules is the
possibility to bend programs into using systemd socket activation.

Signed-off-by: aszlig <aszlig@nix.build>
2018-11-05 16:39:42 +01:00
Daiderd Jordan
8abc1cccfb
SDL: move overrides out of all-packages.nix
Using defaults makes it much easier to understand what the values are.
2018-11-05 14:10:44 +01:00
Peter Hoeg
dfbf6213b4 pythonPackages.snapcast: init at 2.0.9 2018-11-05 20:45:08 +08:00
Daiderd Jordan
7edfded9c3
SDL: include cf-private on darwin
It's not included implicitly by the frameworks anymore.

    Undefined symbols for architecture x86_64:
      "_NSDefaultRunLoopMode", referenced from:
          _QZ_PumpEvents in SDL_QuartzEvents.o
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in SDL_QuartzEvents.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in SDL_QuartzEvents.o
    ld: symbol(s) not found for architecture x86_64
2018-11-05 12:47:14 +01:00
Daiderd Jordan
fd1ffd0e0d
SDL2: include cf-private on darwin
It's not included implicitly by the frameworks anymore.

    Undefined symbols for architecture x86_64:
      "_NSDefaultRunLoopMode", referenced from:
          _Cocoa_PumpEvents in SDL_cocoaevents.o
      "_NSURLIsAliasFileKey", referenced from:
          -[SDLWindow performDragOperation:] in SDL_cocoawindow.o
      "_OBJC_CLASS_$_NSArray", referenced from:
          objc-class-ref in SDL_cocoaclipboard.o
          objc-class-ref in SDL_cocoakeyboard.o
          objc-class-ref in SDL_cocoawindow.o
      "_OBJC_CLASS_$_NSData", referenced from:
          objc-class-ref in SDL_cocoamouse.o
      "_OBJC_CLASS_$_NSDate", referenced from:
          objc-class-ref in SDL_cocoaevents.o
      "_OBJC_CLASS_$_NSDictionary", referenced from:
          objc-class-ref in SDL_cocoaevents.o
      "_OBJC_CLASS_$_NSMutableArray", referenced from:
          objc-class-ref in SDL_cocoawindow.o
      "_OBJC_CLASS_$_NSURL", referenced from:
          objc-class-ref in SDL_cocoawindow.o
      "_OBJC_CLASS_$_NSUserDefaults", referenced from:
          objc-class-ref in SDL_cocoaevents.o
      "_OBJC_EHTYPE_$_NSException", referenced from:
          GCC_except_table67 in SDL_cocoawindow.o
    ld: symbol(s) not found for architecture x86_64
2018-11-05 12:46:01 +01:00
Peter Simons
b854f78991 ghc-8.4.4: disable integer-simple variant build
The build fails: https://hydra.nixos.org/build/83750830
2018-11-05 10:27:57 +01:00
Matthew Bauer
95373d3634 atlas: remove
atlas is broken and can apparently be removed.

Fixes #49594
2018-11-04 20:23:12 -06:00
Vincent Laporte
e338d801e2 mkCoqPackages: look for “dontFilter” in coq derivation 2018-11-04 20:49:38 +00:00
Robert Hensing
51c6f51390 Merge remote-tracking branch 'upstream/master' into nixos-nixpkgs-pkgs-use-overlays 2018-11-04 21:33:16 +01:00
Robert Hensing
14a9365952
Merge pull request #49462 from roberth/pkgs-nixos-example
pkgs.nixos: Add example to inline documentation
2018-11-04 20:35:03 +01:00
Matthew Bauer
2b604c2836
Merge pull request #49670 from matthewbauer/pkgs-i686-remove
Fix pkgsi686Linux assertion
2018-11-04 12:49:09 -06:00
Frederik Rietdijk
b1bdce0793 python34: remove
Python 3.4 will receive it's final patch release in March 2019 and there won't
be any releases anymore after that, so also not during NixOS 2019.03.

Python 3.4 is not used anymore in Nixpkgs. In any case, migrating code from
3.4 to 3.4+ is trivial.
2018-11-04 18:48:24 +01:00
Robert Schütz
6a73df797c
Merge pull request #49744 from nyanloutre/python-gitlab
pythonPackages.python-gitlab: init at 1.6.0
2018-11-04 18:38:21 +01:00
Jörg Thalheim
2a3aa769a0
Merge pull request #49669 from kalbasit/nixpkgs_provide-binaries-for-vim-go
Provide all the binaries needed by the vim-go plugin
2018-11-04 17:30:33 +00:00
Jörg Thalheim
b3ed2b4c18
Merge pull request #49728 from vbgl/acgtk-1.5.0
acgtk: 1.3.1 -> 1.5.0
2018-11-04 17:09:34 +00:00
Tim Steinbach
26f3e8a367
linux: 4.14.78 -> 4.14.79 2018-11-04 11:41:34 -05:00
Profpatsch
34bf218b16 Add dhallPackages and add current Prelude
Dhall is a non-turing complete programming language.
2018-11-04 16:43:41 +01:00
Austin Seipp
be39781058 Merge branch 'master' into staging 2018-11-04 08:38:30 -06:00
Austin Seipp
4569ee7d74 plv8: unbreak build, bump to version 2.3.8
ee58a5b30d broke the plv8 build because it
upgraded the v8_6_x expression everywhere to the 6.9 branch, which came
with API changes. Notably, it seems plv8 only supports up-to v8 6.4.x at
this time.

This keeps a copy of the plv8_6_x expression inside the same directory
as the other v8 versions (so patches, etc are easy to apply), but it is
not exposed to the top-level of all-packages.nix.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-04 08:24:19 -06:00
Jonathan Queiroz
05f368b60a pythonPackages.sslib: init at 0.2.0 (#47985) 2018-11-04 15:00:21 +01:00
Robert Hensing
03fc1167e8
Merge branch 'master' into nixos-nixpkgs-pkgs-use-overlays 2018-11-04 14:19:33 +01:00
nyanloutre
2e49503dfe pythonPackages.python-gitlab: init at 1.6.0 2018-11-04 12:47:46 +01:00
nyanloutre
1ee4c64511 pythonPackages.httmock: init at 1.2.6 2018-11-04 12:47:22 +01:00
Jörg Thalheim
e9f2267f8f
Merge pull request #49710 from Mic92/linux-samus
linux-samus: remove
2018-11-04 11:39:09 +00:00
Peter Simons
4a7cdf4be2
Merge pull request #49701 from averelld/rstudio-preview
RStudio 1.2 preview init
2018-11-04 11:51:03 +01:00
Frederik Rietdijk
322f87137c Merge master into staging-next 2018-11-04 11:33:17 +01:00
Renaud
386691027f
Merge pull request #49603 from dtzWill/feature/slack-term
slack-term: init at 0.4.1
2018-11-04 09:53:47 +01:00
Frederik Rietdijk
cb4ff927a1 Merge master into staging-next 2018-11-04 08:49:24 +01:00
Théo Zimmermann
dd21f83950 coq_8_9: init at 8.9+beta1 2018-11-04 07:26:29 +00:00
Vincent Laporte
08ac103970
acgtk: 1.3.1 -> 1.5.0 2018-11-04 06:29:27 +00:00
Jörg Thalheim
6acf6f3eb9
Merge pull request #49707 from Mic92/linux_beagleboard
linux_beagleboard: remove
2018-11-03 23:56:06 +00:00
Jörg Thalheim
e84291bd23
linux-samus: remove
The package is out-of-date and has no maintainer.
I don't own a chromebook device and therefore don't know
if an mainline kernel could be used instead.
cc @lheckemann @zohl
2018-11-03 20:57:58 +00:00
Jörg Thalheim
da1f78bd2b
linux_beagleboard: remove
The package is out-of-date and has no maintainer.
It should be now possible to just mainline kernel.
Support for that could be added by copying the right dtb file in our linux_rpi kernel.
I do not have the hardware to test this.

cc @dezgeg @dhess
2018-11-03 20:49:52 +00:00
Matthew Bauer
dfd0818aa5
release-cross: use ghc844 for tests
This GHC version has much better support for cross compilation. It should hopefully fix our mingw breakages from #42407.

/cc @ericson2314
2018-11-03 14:17:21 -05:00
Peter Simons
bf084e0ed7
Merge pull request #49653 from peti/drop-old-ghc-versions
drop old ghc versions 7.10.3, 8.0.2, and 8.4.3.
2018-11-03 19:43:59 +01:00
Averell Dalton
c93caa5a67 rstudio-preview: init at f33fb2b2 2018-11-03 19:09:58 +01:00
Robert Hensing
666e0ab1dd pkgs.nixos: Add note about systemd.services.*.runner not being systemd 2018-11-03 19:05:31 +01:00
Niklas Hambüchen
2cb7f5fb1e consul: 0.9.3 -> 1.3.0.
Removes the old UI build tooling; it is no longer necessary
because as of 1.2.0 it's bundled into the server binary.
It doesn't even need to have JS built, because it's bundled into
the release commit's source tree (see #48714).

The UI is enabled by default, so the NixOS service is
updated to directly use `ui = webUi;` now.

Fixes #48714.
Fixes #44192.
Fixes #41243.
Fixes #35602.

Signed-off-by: Niklas Hambüchen <mail@nh2.me>
2018-11-03 18:39:46 +01:00
Edward Tjörnhammar
df28b4b6e5
x11basic: init at 1.26 2018-11-03 17:58:02 +01:00
Renaud
78a6ee6cfc
Merge pull request #48082 from sengaya/ansible-2.7
ansible: Update to latest supported releases
2018-11-03 16:13:50 +01:00
Jonathan Queiroz
4b095c6c05 pythonPackages.fastpbkdf2: init at 0.2 (#47988) 2018-11-03 15:41:16 +01:00
Robert Schütz
4870522f87
Merge pull request #49645 from peterhoeg/p/broadlink
pythonPackages.broadlink: init at 0.9
2018-11-03 15:37:02 +01:00
taku0
3cfa035a99 adoptopenjdk-openj9-bin: 11 -> 11.0.1 2018-11-03 22:00:56 +09:00
Renaud
721ab2e148
Merge pull request #48496 from rvl/bpftrace
linuxPackages.bpftrace: init at unstable-2018-10-27
2018-11-03 13:43:49 +01:00
Frederik Rietdijk
64e19fdeda Merge staging into staging-next
Merging staging into staging-next even though we haven't merged staging-next into master yet.
The motivation for this merge is that it's been a while since we merged into master causing
the 3 branches to diverge too much.
2018-11-03 12:45:23 +01:00
Frederik Rietdijk
ea3935a6c4 Merge master into staging-next 2018-11-03 12:42:18 +01:00
Renaud
722fcbbb80
Merge pull request #49467 from CharlesHD/submit/cmusfm
cmusfm: init at 2018-10-11
2018-11-03 10:40:08 +01:00
Daniël de Kok
1f21fc5e47 cargo-asm: fix build on macOS Mojave
Building cargo-asm on Mojave fails with

ld: framework not found Security

Add Security as a build input.
2018-11-03 08:47:18 +01:00
Matthew Bauer
370ce8fcd3 stage.nix: throw error on incorrect pkgsi686Linux usage
pkgsi686Linux now throws an error with a message as opposed to the
previous assertion.
2018-11-03 00:58:58 -05:00
Matthew Bauer
b3ab4d1f8e Revert "Revert "stage.nix: pkgsi686Linux only works on x86 family""
This reverts commit 08b5cffe87.
2018-11-03 00:52:14 -05:00
Matthew Bauer
08b5cffe87 Revert "stage.nix: pkgsi686Linux only works on x86 family"
This reverts commit 78ca6d885f.

Broke eval on aarch64
2018-11-03 00:47:39 -05:00
Wael M. Nasreddine
e2355c6973
iferr: init unstable at 2018-06-15 2018-11-02 22:04:44 -07:00
Wael M. Nasreddine
fce50a7880
impl: init unstable at 2018-02-27 2018-11-02 22:04:44 -07:00
Wael M. Nasreddine
6a09bfc8bc
gometalinter: init at 2.0.11 2018-11-02 22:04:44 -07:00
Wael M. Nasreddine
a1faa70368
gosec: init at 1.1.0 2018-11-02 22:04:43 -07:00
Wael M. Nasreddine
cfa5c7f896
maligned: init unstable at 2018-07-07 2018-11-02 22:04:43 -07:00
Wael M. Nasreddine
ed31a46727
interfacer: init at unstable 2018-08-31 2018-11-02 22:04:43 -07:00
Wael M. Nasreddine
1efe4d9005
gocyclo: init unstable at 2015-02-08 2018-11-02 22:04:43 -07:00
Wael M. Nasreddine
f10fcf202b
go-check: init unstable at 2018-09-12 2018-11-02 22:04:43 -07:00
Wael M. Nasreddine
fe83c5c3f5
goconst: init at 1.1.0 2018-11-02 22:04:42 -07:00
Wael M. Nasreddine
63d9863394
unconvert: init at unstable 2018-07-03 2018-11-02 22:04:42 -07:00
Wael M. Nasreddine
df46a94d8b
ineffassign: init at unstable 2018-09-09 2018-11-02 22:04:38 -07:00
Wael M. Nasreddine
d225933b4e
go-tools: init at 2017.2.2 2018-11-02 21:58:09 -07:00
Wael M. Nasreddine
9795ad34dd
deadcode: init at unstable 2016-07-24 2018-11-02 21:58:09 -07:00
Wael M. Nasreddine
f5e4939277
gogetdoc: init at unstable 2018-10-25 2018-11-02 21:58:09 -07:00
Wael M. Nasreddine
f6e78e49fa
reftools: init at unstable 2018-09-14 2018-11-02 21:58:09 -07:00
Wael M. Nasreddine
6d7413e54a
errcheck: init at 1.1.0 2018-11-02 21:58:08 -07:00
Wael M. Nasreddine
126e64e658
asmfmt: init at 1.1 2018-11-02 21:58:08 -07:00
Matthew Bauer
78ca6d885f stage.nix: pkgsi686Linux only works on x86 family
aarch64 cpus are going to break on pkgsi686Linux packages.

See this error:

https://hydra.nixos.org/build/82962379/
2018-11-02 21:24:55 -05:00
Matthew Bauer
29b4ac8e41 release-corss.nix: fix ppc-embedded name
s/powerpc-embedded/ppc-embedded
2018-11-02 18:42:58 -05:00
Raphael Borun Das Gupta
295cae7f1c osmium-tool: init at 1.9.1 2018-11-03 00:36:34 +01:00
Raphael Borun Das Gupta
78dbe69543 libosmium: init at 2.14.2 2018-11-03 00:36:28 +01:00
Thilo Uttendorfer
c0d30e5f03 ansible_2_7: init at 2.7.1 2018-11-03 00:11:24 +01:00
Renaud
4e8bed52ce
Merge pull request #49352 from talyz/master
nomachine-client: init at 6.3.6_1
2018-11-03 00:01:10 +01:00
Robert Helgesson
2db8372554
pythonPackages.PyICU: 2.0.3 -> 2.2 2018-11-02 23:19:18 +01:00
Austin Seipp
1155e2d8e4 Merge branch 'master' into staging 2018-11-02 14:18:45 -05:00
Austin Seipp
5ca1b19dab timescaledb-parallel-copy: init at 2018-05-14
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-02 14:16:09 -05:00
Peter Simons
2f0de54ddb Drop obsolete GHC versions 7.10.3, 8.0.2, and 8.4.3.
We keep the latest minor release of each one of the last 3 major releases,
which currently are GHC versions 8.2.2, 8.4.4, and 8.6.1. We also have
ghc-HEAD, but this doesn't count.

Dropping these compilers implied that we have to drop the corresponding
versions of ghcjs, too. We can also drop a shitload of obsolete compiler
patches that newer versions no longer need.

At some point, we can probably simplify the generic builder, too.
2018-11-02 20:13:55 +01:00
Austin Seipp
3378db6adf Merge branch 'master' into staging 2018-11-02 14:01:15 -05:00
Raphael Borun Das Gupta
95a1054a48 protozero: init at 1.6.3 2018-11-02 19:27:38 +01:00
Peter Simons
508ce6e208 haskellPackages: default to ghc 8.4.4 as per Stackage LTS 12.16 2018-11-02 19:21:58 +01:00
talyz
06acfb853f nomachine-client: init at 6.3.6_1
Packages mainly the nxplayer part of the client, since the tray
doesn't work very well without the server / a complete installation.

Use the shipped libs, since nxplayer really doesn't like any others. I
believe they use internally modified versions of many libs.

Audio doesn't work: the libasound.so shipped looks for the alsa config
files in the wrong place, and even if it finds them, it still doesn't
work. Using the one from alsaLib doesn't work either and adds
instability.
2018-11-02 15:56:46 +01:00
Linus Heckemann
e23ebd02ab
Merge pull request #49347 from sjau/easysnap-init
easysnap: init at 2018-10-28
2018-11-02 15:01:47 +01:00
Vladimír Čunát
a92a2c8e15
Merge branch 'master' into staging
Conflict: rename of pythondaemon -> python-daemon.
2018-11-02 14:40:14 +01:00
Peter Hoeg
1ccafe56f9 pythonPackages.broadlink: init at 0.9 2018-11-02 18:12:07 +08:00
Michael Raskin
d24dee08e8
Merge pull request #49617 from aanderse/openscenegraph_3_4
Fix flightgear, simgear & speed_dreams
2018-11-02 08:06:29 +00:00
Renaud
1a91d50ff2 dropwatch: init at 1.5 (#49593) 2018-11-02 00:11:07 +01:00
Aaron Andersen
b543748771 flightgear, simgear & speed_dreams: use openscenegraph_3_4 (version 3.4.0) instead of openscenegraph (version 3.6.2) 2018-11-01 18:15:10 -04:00
John Ericson
3dfd66fb03
Merge pull request #49565 from obsidiansystems/release-lib-cleanup
release-lib: Cache cross nixpkgs evals too, and other fixes
2018-11-01 17:39:52 -04:00
Franz Pletz
68cf3df2a6
Merge pull request #47375 from taku0/remove_oraclejdk_10
oraclejdk: remove version 10
2018-11-01 21:36:42 +00:00
John Ericson
e3082c313b Merge remote-tracking branch 'upstream/master' into release-lib-cleanup 2018-11-01 16:47:42 -04:00
John Ericson
984df7ca06 top-level: libcCrossChooser: More or fallback hack
This fixes some eval errors in release-cross.nix
2018-11-01 16:16:58 -04:00
John Ericson
24e2bc18b6 release-lib: Fallback on uncached rather than error for unknown crossSystem
The `ensureUnaffected` the tests purposefully use an absurd crossSystem.
Also sheevaplug and pogoplug share the same config.
2018-11-01 16:15:56 -04:00
John Ericson
79c713bc14 release-lib: Cache cross nixpkgs evals too
This will help with release-cross.nix eval time. It also allowed me to
share code between the cross and native helpers.
2018-11-01 15:35:08 -04:00
Renaud
db72b65338 pmtools: remove and alias (#49596)
These are the old tools that later became part of ACPICA.
It is obsolete and we already have newer acpica-tools.
Alias to acpica-tools for out of tree backward-compat
2018-11-01 20:07:47 +01:00
Bart Brouns
5a5ef43b40 HybridReverb2: init at 2.1.1 (#49080) 2018-11-01 20:00:24 +01:00
Bart Brouns
55905659a9 avldrums-lv2: init at 0.3.0 (#48896) 2018-11-01 19:59:34 +01:00
Michael Fellinger
bbe1da7aa9 kexpand: init at 2017-05-12 2018-11-01 18:34:14 +01:00
Yurii Izorkin
99b4045826 percona-toolkit: 3.0.11 -> 3.0.12 (#47963)
* percona-toolkit: 3.0.11 -> 3.0.12

License is GPL2 (or Artistic License) but not LGPL2
https://www.percona.com/doc/percona-toolkit/LATEST/copyright_license_and_warranty.html
2018-11-01 18:22:43 +01:00
Matthieu Coudron
efbf9afb17 gImageReader: init at 3.2.99
gImageReader is a GUI for tesseract, an optical character recognition engine.
While the UI supports Qt/Gtk, I have only added the gtk one in the nix derivation.
2018-11-02 01:22:12 +09:00
Will Dietz
81f39ee22f slack-term: init at 0.4.1 2018-11-01 11:17:05 -05:00
taku0
15692e6f12
oraclejdk: remove version 10 2018-11-01 12:37:21 +01:00
Franz Pletz
38db6fdfb9
Merge pull request #48326 from jerith666/jdk11
openjdk: 10.0.2 -> 11.0.1
2018-11-01 11:34:13 +00:00
Edmund Wu
b3bff5c249 pythonPackages.trueskill: init at 0.4.5 (#49342) 2018-11-01 10:56:56 +01:00
Edmund Wu
0111c7d851 pythonPackages.zstd: init at 1.3.5.1 (#49339) 2018-11-01 10:41:28 +01:00
Robert Schütz
f6107effa4
Merge pull request #49158 from alyssais/doh-proxy
doh-proxy: init at 0.0.8
2018-10-31 23:16:03 +01:00
Tristan Helmich
40ae90c9e4 dotnetPackages.SharpFont: 3.1.0 -> 4.0.1 (#49545) 2018-10-31 21:04:31 +01:00
Frederik Rietdijk
8db4814e8e
Merge pull request #49476 from Synthetica9/cuda-update
cudatoolkit, cudnn: many updates
2018-10-31 19:26:41 +01:00
Frederik Rietdijk
ab800ba9ed Merge master into staging-next 2018-10-31 19:16:32 +01:00
Alyssa Ross
39edfe5a2d
doh-proxy: init at 0.0.8 2018-10-31 17:47:25 +00:00
Alyssa Ross
1f1bd5c8e8
python3Packages.aioh2: init at 0.2.2
Tests skipped due to https://github.com/decentfox/aioh2/issues/17.
2018-10-31 17:47:24 +00:00
Bart Brouns
56b88fb03f gxplugins-lv2: init at 0.5 (#48847) 2018-10-31 18:39:34 +01:00
Bart Brouns
0f601b7f76 wolf-shaper: init at 0.1.6 (#49087) 2018-10-31 18:26:46 +01:00
Robert Schütz
e0772e6ef8
Merge pull request #48183 from costrouc/costrouc/python-atomman
pythonPackages.atomman: init at 1.2.3
2018-10-31 17:23:30 +01:00
Joachim F
e4bfc708e5
Merge pull request #49330 from sephalon/fstrcmp
fstrcmp: init at 0.7
2018-10-31 15:01:35 +00:00
CharlesHD
c8c77476dc cmusfm: init at 2018-10-11 2018-10-31 15:24:46 +01:00
Alyssa Ross
cd1ff3bede
python3Packages.aiohttp_remotes: init at 0.1.2 2018-10-31 13:08:40 +00:00
Patrick Hilhorst
43f6d9ada4
pytorch: remove pre-cuda92 hack 2018-10-31 10:43:00 +01:00
Stefan Wiehler
beeaebad5e fstrcmp: init at 0.7 2018-10-31 07:47:20 +01:00
sjau
df51c5ef80 easysnap: init at 2018-10-28 2018-10-31 04:41:23 +01:00
Jörg Thalheim
0c1ee96a89
Merge pull request #48848 from nicknovitski/android-sdk-26-licenses
Update android sdk, add license config option and selectable build tools
2018-10-30 21:06:52 +00:00
Ales Huzik
6d34e36ed7
modem-manager-gui: init at 0.0.19.1 2018-10-30 21:55:15 +01:00
Ales Huzik
29080af27f
perlPackages.Po4a: fix install paths 2018-10-30 21:55:15 +01:00
Benjamin Hipple
baf0703010 pythonPackages.pythondaemon: rename to pythonPackages.python-daemon
This commit renames the pythondaemon module to match its module name, github
name, and pypi name, which makes it easier to find and reference. In order to
avoid breaking any external users, I've left an alias with a deprecated warning.
2018-10-30 21:09:34 +01:00
Frederik Rietdijk
1d196d99be Merge staging-next into staging 2018-10-30 20:35:15 +01:00
John Ericson
26fa9d2b51
Merge pull request #49477 from obsidiansystems/haskell-shell-completions
haskell-lib: Factor out shell completion scripts helper
2018-10-30 15:25:03 -04:00
Niklas Thörne
d48cef7d5b cppclean: init at 2018-05-12 (#49264)
* cppclean: init at 2018-05-12

* Updated according to review comments
2018-10-30 20:15:33 +01:00
Frederik Rietdijk
0e0d20fb5f Merge master into staging-next 2018-10-30 19:55:48 +01:00
John Ericson
c34f5176f1 haskell-lib: Factor out shell completion scripts helper 2018-10-30 14:49:58 -04:00
Matthew Bauer
a6fa5bd936
Merge pull request #48286 from matthewbauer/avrgcc
avr: use new cross compilation infrastructure
2018-10-30 13:49:08 -05:00
Matthew Bauer
2634d37617 systems/examples: add i686 & x86-64 embedded
Fixes #28160
2018-10-30 13:46:01 -05:00
Matthew Bauer
a33d122be6 qmk_firmware: init at 0.6.144
A convenient way to test embedded projects
2018-10-30 13:31:56 -05:00
Matthew Bauer
dcdf00f18b mentorToolchains: remove
mentorToolchains.armLinuxGnuEabi is replaced with:

- pkgsCross.pogoplug4.buildPackages.gcc
- pkgsCross.pogoplug4.buildPackages.binutils

and mentorToolchains.armEabi is replaced with:

- pkgsCross.arm-embedded.buildPackages.gcc
- pkgsCross.arm-embedded.buildPackages.binutils

Fixes #39087
2018-10-30 13:31:56 -05:00
Matthew Bauer
c327df544a gcc-arm-embedded: remove
replace with:

- pkgsCross.arm-embedded.buildPackages.gcc
- pkgsCross.arm-embedded.buildPackages.binutils
2018-10-30 13:31:55 -05:00
Matthew Bauer
aa4707fc34 treewide: use gnu toolchain for avr/arm-embedded
These packages should in theory work with our GCC toolchains, but
there are some definite breakages that need to be tracked down.
Comparing output of these to old gcc-arm-embedded is important.

Affected packages include:

- axolooti
- avrdudess
- opentx
- microscheme
- betaflight
- inav
- blackmagic
- simavr
- gnuk
2018-10-30 13:31:45 -05:00
Chris Ostrouchov
ae66a9244b
hoomd-blue: init at 2.3.4 2018-10-30 14:20:31 -04:00
Patrick Hilhorst
4cfeb9da53
cudatoolkit, cudnn: many updates
cudatoolkit_9_1: 9.1.85.1 -> 9.1.85.3
cudatoolkit_9_2: init at 9.2.148.1
cudatoolkit_9: 9.1.85.1 -> 9.2.148.1
cudatoolkit_10, cudatoolkit_10_0: init at 10.0.130

cudnn_cudatoolkit_9_0: 7.0.5 -> 7.3.0
cudnn_cudatoolkit_9_1: init at 7.1.3
cudnn_cudatoolkit_9_2: init at 7.2.1
cudnn_cudatoolkit_9: 7.0.5 (9.1) -> 7.3.1 (9.2)
cudnn_cudatoolkit_10, cudnn_cudatoolkit_10_0: init at 7.3.1
2018-10-30 19:09:20 +01:00
Chris Ostrouchov
1ac9d8ea40
pythonPackages.atomman: init at 1.2.3 2018-10-30 13:38:59 -04:00
Chris Ostrouchov
7dd7190a57
pythonPackages.DataModelDict: init at 0.9.4 2018-10-30 13:38:59 -04:00
Chris Ostrouchov
0cf2c6fcfe
pythonPackages.numericalunits: init at 1.16 2018-10-30 13:38:59 -04:00
Lizard
39662cf61c pbpst: init at unstable-2018-01-11 (#49459) 2018-10-30 17:33:59 +01:00
Daniël de Kok
3a2336798f pyo3-pack: init at 0.3.8 (#46754) 2018-10-30 16:36:21 +01:00
Lancelot SIX
f68cf486d8
Merge pull request #48664 from alyssais/postgres11
postgresql_11: init at 11.0
2018-10-30 15:54:42 +01:00
Alyssa Ross
91c746cacc
postgresql_11: init at 11.0 2018-10-30 14:33:35 +00:00
Alyssa Ross
c6c7d55790
postgresql*: use underscores in version numbers 2018-10-30 14:32:21 +00:00
Robert Hensing
c3a7194843 pkgs.nixos: Add example to inline documentation 2018-10-30 15:24:19 +01:00
Jörg Thalheim
8df0ca2bbc
coq_8_4: remove
verasco was its only user
2018-10-30 13:31:11 +00:00
Jörg Thalheim
b5ad615474
verasco: remove unmaintained project
Verasco is no longer maintained by upstream and blocks updates of some libraries.
Removing it also makes it possible to remove coq 8.4.
2018-10-30 13:31:11 +00:00
Michael Raskin
1d8794e16e
Merge pull request #48873 from romildo/new.jwm-settings-manager
jwm-settings-manager: init at 2018-10-19
2018-10-30 13:24:46 +00:00
Francesco Gazzetta
0306277097 sfxr-qt: init at 1.2.0 2018-10-30 13:47:44 +01:00
Alyssa Ross
9594b59f13
postgresql10: rename from postgresql100 2018-10-30 12:40:20 +00:00
Léo Gaspard
02e1f00ffd
dovecot, opensmtpd: add link to test in meta.tests
Rationale
---------

Currently, tests are hard to discover. For instance, someone updating
`dovecot` might not notice that the interaction of `dovecot` with
`opensmtpd` is handled in the `opensmtpd.nix` test.

And even for someone updating `opensmtpd`, it requires manual work to go
check in `nixos/tests` whether there is actually a test, especially
given not so many packages in `nixpkgs` have tests and this is thus most
of the time useless.

Finally, for the reviewer, it is much easier to check that the “Tested
via one or more NixOS test(s)” has been checked if the file modified
already includes the list of relevant tests.

Implementation
--------------

Currently, this commit only adds the metadata in the package. Each
element of the `meta.tests` attribute is a derivation that, when it
builds successfully, means the test has passed (ie. following the same
convention as NixOS tests).

Future Work
-----------

In the future, the tools could be made aware of this `meta.tests`
attribute, and for instance a `--with-tests` could be added to
`nix-build` so that it also builds all the tests. Or a `--without-tests`
to build without all the tests. @Profpatsch described in his NixCon talk
such systems.

Another thing that would help in the future would be the possibility to
reasonably easily have cross-derivation nix tests without the whole
NixOS VM stack. @7c6f434c already proposed such a system.

This RFC currently handles none of these concerns. Only the addition of
`meta.tests` as metadata to be used by maintainers to remember to run
relevant tests.
2018-10-30 21:31:39 +09:00
Jörg Thalheim
d23d25ebbb
Merge pull request #47594 from midchildan/add-sourcetrail
sourcetrail: init at 2018.3.55
2018-10-30 12:07:51 +00:00
José Romildo Malaquias
b348f8568f jwm-settings-manager: init at 2018-10-19 2018-10-30 07:49:53 -03:00
Stefan Siegl
74cfbd63e1
tomboy: build against mono 5, refs #49369 2018-10-30 10:08:39 +01:00
Chris Ostrouchov
fa7d1d8bfb
pythonPackages.smugline: refactor move to python-modules 2018-10-30 00:51:23 -04:00
Chris Ostrouchov
c33c576212
pythonPackages.pivy: refactor move to python-modules 2018-10-30 00:51:23 -04:00
Chris Ostrouchov
f54484f527
pythonPackages.telegram: refactor move to python-modules 2018-10-30 00:51:23 -04:00
Chris Ostrouchov
a36ce69f6c
pythonPAckages.pygments-markdown-lexer: refactor move to python-modules 2018-10-30 00:51:23 -04:00
Chris Ostrouchov
c0e09bef5a
pythonPAckages.yapsy: refactor move to python-modules 2018-10-30 00:51:23 -04:00
Chris Ostrouchov
6afd56f61a
pythonPackages.threadpool: refactor move to python-modules 2018-10-30 00:51:23 -04:00
Chris Ostrouchov
6fd3323d26
pythonPackages.tvnamer: refactor move to python-modules 2018-10-30 00:51:22 -04:00
Chris Ostrouchov
97b2d6790a
pythonPAckages.tvdb_api: refactor move to python-modules 2018-10-30 00:51:22 -04:00
Chris Ostrouchov
173793c63f
pythonPackages.word2vec: refactor move to python-modules 2018-10-30 00:51:22 -04:00
Chris Ostrouchov
f0e62b79fc
pythonPAckages.simpleai: refactor move to python-modules 2018-10-30 00:51:22 -04:00
Chris Ostrouchov
1a4f32c3f7
pythonPackages.zerobin: refactor move to python-modules 2018-10-30 00:51:22 -04:00
Chris Ostrouchov
19a50012dc
pythonPackages.clize: refactor move to python-modules 2018-10-30 00:51:21 -04:00
Chris Ostrouchov
b42e1d1b1e
pythonPackages.sigtools: refactor move to python-modules 2018-10-30 00:51:21 -04:00
Chris Ostrouchov
b1dbddd584
pythonPackages.Lasagne: refactor move to python-modules 2018-10-30 00:51:21 -04:00
Chris Ostrouchov
8e22218220
pythonPAckages.repeated_test: refactor move to python-modules 2018-10-30 00:51:21 -04:00
Chris Ostrouchov
f310c74cfd
pythonPackages.pandocfilters: refactor move to python-modules 2018-10-30 00:51:21 -04:00
Chris Ostrouchov
89623a675e
pythonPackages.queuelib: refactor move to python-modules 2018-10-30 00:51:20 -04:00
Chris Ostrouchov
3ae4a36ae3
pythonPackages.w3lib: refactor move to python-modules 2018-10-30 00:51:20 -04:00
Chris Ostrouchov
b794f35441
pythonPackages.x11_hash: refactor move to python-modules 2018-10-30 00:51:20 -04:00
Chris Ostrouchov
0851a181f0
pythonPackages.trezor_agent: refactor move to python-modules 2018-10-30 00:51:20 -04:00
Chris Ostrouchov
6ca3651766
pythonPackages.xlsx2csv: refactor move to python-modules 2018-10-30 00:51:19 -04:00
Chris Ostrouchov
82878eaade
pythonPackages.xkcdpass: refactor move to python-modules 2018-10-30 00:51:19 -04:00
Chris Ostrouchov
a80b2e3543
pythonPackages.importmagic: refactor move to python-modules 2018-10-30 00:51:19 -04:00
Chris Ostrouchov
f5ac53a2b5
pythonPackage.willow: refactor move to python-modules 2018-10-30 00:51:19 -04:00
Chris Ostrouchov
42960fb742
pythonPackages.mps-youtube: refactor move to python-modules 2018-10-30 00:51:18 -04:00
Chris Ostrouchov
1024394c66
pythonPackages.maildir-deduplicate: refactor move to python-modules 2018-10-30 00:51:18 -04:00
Chris Ostrouchov
74a6022c91
pythonPackages.mailcap-fix: refactor move to python-modules 2018-10-30 00:51:18 -04:00
Chris Ostrouchov
1a3bfa1941
pythonPackages.suds-jurko: refactor move to python-modules 2018-10-30 00:51:18 -04:00
Chris Ostrouchov
c2526182c8
pythonPackages.suds: refactor move to python-modules 2018-10-30 00:51:17 -04:00
Chris Ostrouchov
64a24d3f9a
pythonPackages.dot2tex: refactor move to python-modules 2018-10-30 00:51:17 -04:00
Chris Ostrouchov
8b8155facc
pythonPackages.jenkins-job-builder: refactor move to python-modules 2018-10-30 00:51:17 -04:00
Chris Ostrouchov
dae0571bc3
pythonPackages.jenkinsapi: refactor move to python-modules 2018-10-30 00:51:17 -04:00
Chris Ostrouchov
15b5f85a96
pythonPackages.pypeg2: refactor move to python-modules 2018-10-30 00:51:17 -04:00
Chris Ostrouchov
ff64515579
pythonPackages.smartypants: refactor move to python-modules 2018-10-30 00:51:16 -04:00
Chris Ostrouchov
eb7fbb8c37
pythonPackages.typogrify: refactor move to python-modules 2018-10-30 00:51:16 -04:00
Chris Ostrouchov
fcb1e3bbba
pythonPackages.neovim_gui: refactor move to python-modules 2018-10-30 00:51:16 -04:00
Chris Ostrouchov
b1ea3cdc67
pythonPackages.geeknote: refactor move to python-modules 2018-10-30 00:51:16 -04:00
Chris Ostrouchov
80c9049524
pythonPackages.thrift: refactor move to python-modules 2018-10-30 00:51:16 -04:00
Chris Ostrouchov
13352bb720
pythonPackages.setproctitle: refactor move to python-modules 2018-10-30 00:51:15 -04:00
Chris Ostrouchov
e0d6142ed8
pythonPackages.evernote: refactor move to python-modules 2018-10-30 00:51:15 -04:00
Chris Ostrouchov
c9d4ba2407
pythonPAckages.basemap: refactor move to python-modules 2018-10-30 00:51:15 -04:00
Chris Ostrouchov
b67cc15b3e
pythonPackages.ofxtools: refactor move to python-modules 2018-10-30 00:51:15 -04:00
Chris Ostrouchov
5083413b00
pythonPackages.ofxparse: refactor move to python-modules 2018-10-30 00:51:14 -04:00
Chris Ostrouchov
04558f25d8
pythonPAckages.parsimonious: refactor move to python-modules 2018-10-30 00:51:14 -04:00
Chris Ostrouchov
1b9a9d2530
pythonPAckages.html2text: refactor move to python-modules 2018-10-30 00:51:14 -04:00
Chris Ostrouchov
ec00d1aa54
pythonPackages.termcolor: refactor move to python-modules 2018-10-30 00:51:14 -04:00
Chris Ostrouchov
606d7c79e9
pythonPackages.datadiff: refactor move to python-modules 2018-10-30 00:51:13 -04:00
Chris Ostrouchov
8bbd8dcc1f
pythonPackages.pync: refacotr move to python-modules 2018-10-30 00:51:13 -04:00
Chris Ostrouchov
b9ad8d843d
pythonPackages.thumborPexif: refactor move to python-modules 2018-10-30 00:51:13 -04:00
Chris Ostrouchov
246bf6c54d
pythonPAckages.unpaddedbase64: refactor move to python-modules 2018-10-30 00:51:13 -04:00
Chris Ostrouchov
5db9302335
pythonPackages.signedjson: refactor move to python-modules 2018-10-30 00:51:13 -04:00
Chris Ostrouchov
62caeb1e31
pythonPackages.pynac: refactor move to python-modules 2018-10-30 00:51:12 -04:00
Chris Ostrouchov
c5ae2c3047
pythonPackages.pydenticon: refactor move to python-modules 2018-10-30 00:51:12 -04:00
Chris Ostrouchov
d4cf05070c
pythonPackages.daemonize: refactor move to python-modules 2018-10-30 00:51:12 -04:00
Chris Ostrouchov
ab96dd445e
pythonPackages.blist: refactor move to python-modules 2018-10-30 00:51:12 -04:00
Chris Ostrouchov
10797302fb
pythonPAckages.WSGIProxy: refactor move to python-modules 2018-10-30 00:51:11 -04:00
Chris Ostrouchov
e53a0479b5
pythonPackages.svg2tikz: refactor move to python-modules 2018-10-30 00:51:11 -04:00
Chris Ostrouchov
00eb722bf7
pythonPackages.funcy: refactor move to python-modules 2018-10-30 00:51:11 -04:00
Chris Ostrouchov
a576b19efb
pythonPackages.snapperGUI: refactor move to python-modules 2018-10-30 00:51:11 -04:00
Chris Ostrouchov
ae3f7898c6
pythonPackages.toposort: refactor move to python-modules 2018-10-30 00:51:11 -04:00
Chris Ostrouchov
f84db6dcee
pythonPackges.tlsh: refacotr move to python-modules 2018-10-30 00:51:10 -04:00
Chris Ostrouchov
46d331ba8d
pythonPackages.power: refactor move to python-modules 2018-10-30 00:51:10 -04:00
Chris Ostrouchov
1654bd1865
pythonPackages.speaklater: refactor move to python-modules 2018-10-30 00:51:10 -04:00
Chris Ostrouchov
7008718bcf
pythonPackages.flaskbabel: refactor move to python-modules 2018-10-30 00:51:10 -04:00
Chris Ostrouchov
424082d2fb
pythonPackages.grequests: refactor move to python-modules 2018-10-30 00:51:10 -04:00
Chris Ostrouchov
1c0b595b05
pythonPackages.rpdb: refactor move to python-modules 2018-10-30 00:51:09 -04:00
Chris Ostrouchov
1c5e08e217
pythonPackages.IMAPClient: refactor move to python-modules 2018-10-30 00:51:09 -04:00
Chris Ostrouchov
13b2ea6582
pythonPackages.gdata: refactor move to python-modules 2018-10-30 00:51:09 -04:00
Chris Ostrouchov
f82b1b7580
pythonPackges.pykka: refactor move to python-modules 2018-10-30 00:51:09 -04:00
Chris Ostrouchov
2cb75f82fc
pythonPAckages.pyspotify: refactor move to python-modules 2018-10-30 00:51:09 -04:00
Chris Ostrouchov
d241cc3a65
pythonPackages.veryprettytable: refactor move to python-modules 2018-10-30 00:51:08 -04:00
Chris Ostrouchov
dcd9daa561
pythonPackages.versiontools: refactor move to python-modules 2018-10-30 00:51:08 -04:00
Chris Ostrouchov
35f95f0595
pythonPackages.txamqp: refactor move to python-modules 2018-10-30 00:51:08 -04:00
Chris Ostrouchov
1ab1ff4963
pythonPackages.txrequests: refactor move to python-modules 2018-10-30 00:51:08 -04:00
Chris Ostrouchov
cf540a7e08
pythonPackages.txgithub: refactor move to python-modules 2018-10-30 00:51:07 -04:00
Chris Ostrouchov
2d7d2fa0e2
pythonPAckages.ujson: refactor move to python-modules 2018-10-30 00:51:07 -04:00
Chris Ostrouchov
1109081215
pythonPAckages.worldengine: refactor move to python-modules 2018-10-30 00:51:07 -04:00
Chris Ostrouchov
6c10afe130
pythonPackages.webhelpers: refactor move to python-modules 2018-10-30 00:51:07 -04:00
Chris Ostrouchov
9041374d64
pythonPackages.larch: refactor move to python-modules 2018-10-30 00:51:07 -04:00