Commit Graph

23978 Commits

Author SHA1 Message Date
worldofpeace
0f760506be quilter: init at 1.6.3 2018-09-09 18:34:30 -04:00
worldofpeace
2785958760 bookworm: init at 1.0.0 2018-09-09 17:22:38 -04:00
Franz Pletz
4d11a37c69
spdlog_1: init 1.1.0 2018-09-09 22:15:06 +02:00
Franz Pletz
8473168bef
mtxclient: init at 0.1.0 2018-09-09 22:15:06 +02:00
Benjamin Hipple
4d8bb9a34a dockerTools: unpin go version
The linked PR has been merged, and in fact dockerTools has upgraded to the
latest `go1.11` compiler:

https://github.com/moby/moby/pull/35739
https://github.com/moby/moby/pull/37358
2018-09-09 11:21:59 -04:00
Jörg Thalheim
ab8f0aa476
Merge pull request #46392 from andrew-d/adunham/wkhtmltopdf-qt5
wkhtmltopdf: 0.12.4 -> 0.12.5, use Qt5
2018-09-09 15:10:12 +01:00
Daiderd Jordan
939debc7a4
bullet: fix darwin build
The examples fail with an opengl related issue:

    Undefined symbols for architecture x86_64:
      "SimpleOpenGL3App::SimpleOpenGL3App(char const*, int, int, bool)", referenced from:
          _main in main_opengl_single_example.o
      "_useShadowMap", referenced from:
          GL_ShapeDrawer::drawScene(btDiscreteDynamicsWorld const*, bool, int) in GL_ShapeDrawer.o
    ld: symbol(s) not found for architecture x86_64

And the tests need an extra dependencly, possibley related to
https://github.com/bulletphysics/bullet3/issues/819

    ld: library not found for -lBussIK

/cc ZHF #45961
2018-09-09 15:34:03 +02:00
Scott W. Dunlop
c69933f71b nats-streaming-server: init at 0.11.0 2018-09-08 23:11:24 +00:00
Andrew Dunham
5e94e2bc7c wkhtmltopdf: 0.12.4 -> 0.12.5, use Qt5 2018-09-08 16:11:06 -07:00
Matthew Bauer
a0dc4854af
Merge pull request #38878 from tadfisher/steamcmd
steamcmd: init at 20180104
2018-09-08 17:55:56 -05:00
Tad Fisher
0b2b7b2d53 steamcmd: init at 20180104 2018-09-08 13:39:32 -07:00
Yarny0
a08b633fe7 HylaFAX+: init at 5.6.0
Create the top-level packages attribute
'hylafaxplus' that builds HylaFAX+ .

Note:
The nobody uid and the nogroup gid
are hardcoded in the package.
The package build recipe file
contains options to modify these ids.
2018-09-08 14:21:40 +02:00
Vladyslav M
3b4ab85f01 ripgrep: 0.9.0 -> 0.10.0 (#46331) 2018-09-08 14:21:25 +02:00
Maximilian Bosch
37032db583 chessx: fix build (#46359)
See https://hydra.nixos.org/build/80998335.

Upstream doesn't support QT 5.11 ATM which broke compilation:

```
src/dialogs/savedialog.cpp: In constructor ‘SaveDialog::SaveDialog(QWidget*, Qt::WindowFlags)’:
src/dialogs/savedialog.cpp:37:34: error: invalid use of incomplete type ‘class QButtonGroup’
     group = new QButtonGroup(this);
```

The Arch community recommends to use an older QT version to fix
this (https://aur.archlinux.org/packages/chessx/).

Furthermore the `QT_PLUGIN_PATH` wasn't set properly which broke the
runtime since QT coudln't find the `xcb` plugin:

```
qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in ""
This application failed to start because no Qt platform plugin could be initialized.
Reinstalling the application may fix this problem.
```

Finally, some minor style fixes were made for consistent indentation.

Addresses #45960
2018-09-08 14:19:24 +02:00
Uli Baum
2953d4c994 banshee: remove
- was broken since June 2016 because it depends on `boo`
- no visible attempts to fix in over 2 years
2018-09-08 10:24:22 +02:00
Uli Baum
dc84de59d1 nant: remove
- our version is from 2015
- it doesn't build
- upstream project is dead, last release 2012, last commit Oct 2016.
- used by only 1 nixpkgs package: `boo`, marked broken since 2016.
2018-09-08 10:23:23 +02:00
Uli Baum
5a166ffd47 boo: remove, broken since Jun 2016
marked broken in June 2016, no visible attempt to fix it,
so let's get rid of it
2018-09-08 10:23:23 +02:00
Tim Steinbach
bd55a78f6d nanorc: Init at 2018-09-05 2018-09-07 21:11:26 -04:00
xeji
a60e79425b
Merge pull request #46019 from veprbl/pr/geant4_overhaul
geant4 overhaul
2018-09-07 20:08:17 +02:00
Timo Kaufmann
e326c0156d
Merge pull request #45728 from Ma27/nixos/weechat-module
nixos/weechat: add module
2018-09-07 17:19:46 +02:00
Sarah Brofeldt
4ae70b7771
Merge pull request #46111 from stites/noti
noti: init at 3.1.0
2018-09-07 16:35:18 +02:00
stites
f1c30cf772 noti: init at 3.1.0 2018-09-07 10:28:03 -04:00
Maximilian Bosch
a8efe61412
weechat: 2.1 -> 2.2; improve package configuration
This aims to make the `weechat` package even more configurable. It
allows to specify scripts and commands using the `configure` function
inside a `weechat.override` expression.

The package can be configured like this:

```
with import <nixpkgs> { };
weechat.override {
  plugins = { availablePlugins, ... }: {
    plugins = builtins.attrValues availablePlugins;

    init = ''
      /set foo bar
      /server add freenode chat.freenode.org
    '';

    scripts = [ "/path/to/script.py" ];
  };
}
```

All commands are passed to `weechat --run-command "/set foo bar;/server ..."`.

The `plugins' attribute is not necessarily required anymore, if it's
sufficient to add `init' commands, the `plugins' will be
`builtins.attrValues availablePlugins' by default.

Additionally the result contains `weechat` and `weechat-headless`
(introduced in WeeChat 2.1) now.
2018-09-07 13:10:43 +02:00
Michael Raskin
0e4197b34b julia: readd julia_06 name, make julia an alias that selects a version, as we usually do for incompatible versions 2018-09-07 11:39:52 +03:00
xplat
3fc7c5b591 opam: 1.2.2 -> 2.0.0 (#45806) 2018-09-06 19:18:34 +02:00
Paul TREHIOU
fc2c606a7a jackett: 0.9.41 -> 0.10.160 (#46114)
* jackett: update mono to 5.8

Jackett needs mono version >= 5.8

https://github.com/Jackett/Jackett/blob/master/README.md#supported-systems

* jackett: 0.9.41 -> 0.10.160
2018-09-06 18:02:33 +02:00
Profpatsch
e8f336fac2 skawarePackages.nsss: init at 0.0.1.0 2018-09-06 11:53:22 +02:00
Profpatsch
0071ae1d4f skawarePackages: factor out the common parts
Introduce a `skawarePackages.buildPackage` function that contains the
common setup, removing a lot of duplication.
In particular, we require that the build directory has to be empty
after the `fixupPhase`, to make sure every relevant file is moved to
the outputs.

A next step would be to deduplicate the `configureFlags` attributes
and only require a `skawareInputs` field.
2018-09-06 11:53:22 +02:00
Profpatsch
57b431590b skaware: bundle all skaware packages into an attrset
They are normally updated in lockstep, this makes maintenance more
convenient.
2018-09-06 11:53:22 +02:00
Vladimír Čunát
b5bd566172
Merge #46075: texinfoInteractive: fix for new perl 2018-09-06 09:09:44 +02:00
Tim Steinbach
f89d6d92b7
linux: Remove 4.17 2018-09-05 21:02:09 -04:00
John Ericson
32df8909e5
Merge pull request #46076 from oxij/tree/cleanups
trivial: treewide: random noop cleanups
2018-09-05 15:14:12 -04:00
Matthew Bauer
4120a9dda7
Merge pull request #42295 from avnik/libprefixed-to-multioutput/heimdal
Libprefixed to multioutput/heimdal
2018-09-05 13:50:13 -05:00
Jan Malakhovski
0b89ece569 Revert "texinfoInteractive: fixup build by using older perl"
This reverts commit 7a22083e12.
2018-09-05 16:39:37 +00:00
Janne Heß
a885e886b6 nullidentdmod: Init at 1.3 (#46040) 2018-09-05 11:09:55 +02:00
xeji
91cc864c3c
Merge pull request #46081 from samueldr/fix/solarus
solarus[-quest-editor]: 1.4.5 -> 1.5.3
2018-09-05 08:53:51 +02:00
Kenny Shen
7e0dd4c261 prettyping: init 1.0.1 (#46008) 2018-09-05 07:52:55 +02:00
Michael Raskin
856b891765
Merge pull request #46049 from dtzWill/update/libreoffice-2018
libreoffice-{fresh,still}: upgrade and clean
2018-09-05 04:27:11 +00:00
Samuel Dionne-Riel
83a0d5d013 solarus: 1.4.5 -> 1.5.3 2018-09-04 22:03:56 -04:00
Wael M. Nasreddine
107de747c7 linux_4_18: HID: core: fix grouping by application
This patch fixes #45165

commit f07b3c1da92d ("HID: generic: create one input report per
application type") was effectively the same as MULTI_INPUT:
hidinput->report was never set, so hidinput_match_application()
always returned null.

Fix that by testing against the real application.

Note that this breaks some old eGalax touchscreens that expect MULTI_INPUT
instead of HID_QUIRK_INPUT_PER_APP. Enable this quirk for backward
compatibility on all non-Win8 touchscreens.

link: https://bugzilla.kernel.org/show_bug.cgi?id=200847
link: https://bugzilla.kernel.org/show_bug.cgi?id=200849
link: https://bugs.archlinux.org/task/59699
link: https://github.com/NixOS/nixpkgs/issues/45165

Cc: stable@vger.kernel.org # v4.18+
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
2018-09-04 20:11:42 -04:00
Jan Malakhovski
4092708261 treewide: cleanup some references to bash 2018-09-04 22:05:02 +00:00
Jan Malakhovski
033ed93da2 all-packages.nix: cleanup a bit 2018-09-04 17:59:52 +00:00
Jan Malakhovski
1ee3c294bf all-packages.nix: rename emacs functions Gen -> For
This was introduced when it was unclear which suffix was better, but now it's
clear that the "For" convention won.
2018-09-04 17:59:51 +00:00
Will Dietz
72cf7f513d libreoffice-{fresh,still}: upgrade and clean
* libreoffice-still: -> 6.0.6.2
  * (newer than our current 'fresh!')
* libreoffice-fresh: -> 6.1.0.3
  * 6.1.1(.1) is currently pre-release, FWIW
* Use normal gcc, not gcc5
  * dropping 'glibc' from buildInputs fixed this (?)
* remove many fixes/touchups/workarounds/hacks
  * hopefully everything still works for everyone
* disable online update since that seems unlikely to work anyway
* fix autogen/configure invocations
* disable libnumbertext in 6.1.x since not packaged
* drop 'touch solenv/inc/target.mk' as unclear what it was for
  and doesn't seem to be currently needed
* cleanup link gen a bit[1]
* split checks to check phase

[1]
primary motivation was to stop creating links like:

'libreoffice-6.0.5.2/src/-libxslt-1.1.32.tar.gz' -> '/nix/store/503v5hmhm430bld0h078gacmkniwdllr-libxslt-1.1.32.tar.gz'
'libreoffice-6.0.5.2/src/libxslt-1.1.32.tar.gz' -> '/nix/store/503v5hmhm430bld0h078gacmkniwdllr-libxslt-1.1.32.tar.gz'

This is mostly accomplished by simply using the 'md5name' field
which the python script kindly generates for us
(including the use of non-md5 if md5 is not set or empty).
2018-09-04 11:51:55 -05:00
xeji
0402f04b9b
Merge pull request #44978 from alyssais/cargo-download
cargo-download: init at 0.1.1
2018-09-04 15:36:53 +02:00
Vladimír Čunát
1428d00aa4
Merge branch 'master' into staging-next
Hydra: ?compare=1477053
2018-09-04 13:06:45 +02:00
Orivej Desh
2e0befd22e libsignal-protocol-c: init at 2.3.2 2018-09-04 08:35:52 +00:00
Alexander Kahl
5e9aafb316
semodule-utils: init at 2.7 2018-09-04 09:42:02 +02:00
symphorien
6c8cea6315 hdaps-gl: init at 0.0.5 (#45986) 2018-09-04 00:28:15 +02:00
markuskowa
7c915abd52 gnss-sdr: set boost version to 1.66 (#46014) 2018-09-04 00:20:48 +02:00
Michiel Leenaars
bfb14fbe72 thonny: init at 3.0.0b3 2018-09-03 23:40:34 +02:00
symphorien
3549879b45 gede: 2.6.1 -> 2.10.9 (#45995)
reverting to qt 5.9 fixed the build.
2018-09-03 23:24:38 +02:00
Tim Steinbach
5fccac2b8d
kernel: Remove Copperhead
The patches are unmaintained and suggest a false sense of security
2018-09-03 11:18:11 -04:00
Dmitry Kalinkin
f3049d020a geant4: move parameter definitions from all-packages, use system zlib, use qt5 2018-09-03 10:55:33 -04:00
Dmitry Kalinkin
ecfa538e05 gean4: use motif for enableXM by default (lesstif is deprecated, see #17359) 2018-09-03 10:55:15 -04:00
Jan Malakhovski
a402c8f295 fbreader: 0.99.4 -> 0.99.6, switch to fetchFromGitHub, add more build options (#45840)
This, apparently, is not an official release (it's tagged, but the tarball is not
available on the official site), but this repo is the official repo mentioned on
the official site.

This fixes a bunch of very annoying bugs present in 0.99.4, e.g.

```
$ FBReader filename
```

does not crash anymore. Yay!
2018-09-02 21:47:06 +02:00
Ryan Mulligan
7b54a50e97
Merge pull request #45730 from Helkafen/snakemake
snakemake: init at 5.2.2
2018-09-02 07:54:13 -07:00
xeji
6a7cd78884
Merge pull request #45818 from jglukasik/master
ipfs-cluster: init at v0.5.0
2018-09-02 13:52:48 +02:00
Frederik Rietdijk
b910b697f6 Merge master into staging 2018-09-02 12:10:33 +02:00
Utku Demir
7fbfba7c66
bluejeans-gui: init at 1.6.39 2018-09-02 19:22:07 +12:00
greydot
028b64ab08 qcomicbook: init at 0.9.1. (#44074) 2018-09-01 23:39:38 +02:00
Vladimír Čunát
2d6179d1e8
Merge branch 'master' into staging
A few trivial conflicts due to *Platforms mass replace.
2018-09-01 17:38:18 +02:00
Vladimír Čunát
2e7cb61cfb
Merge #45720: coreutils: split a coreutils-full version 2018-09-01 17:03:49 +02:00
Vladimír Čunát
342d3db703
Merge branch 'staging-next'
The failure diff seems good-enough on Hydra now.
2018-09-01 17:02:15 +02:00
Kevin Cox
0a6420cbac
cargo-web: init at 0.6.15 2018-09-01 14:20:58 +01:00
Sebastian Meric de Bellefon
93ce77af40 python.pkgs.snakemake: init at 5.2.2 2018-09-01 09:18:19 -04:00
Daiderd Jordan
9e2e667d05
Merge pull request #44640 from LnL7/beam-erlangR20
beam-packages: default erlangR19 -> erlangR20
2018-09-01 14:24:11 +02:00
Jörg Thalheim
b29aff5a05
Merge pull request #45705 from manveru/ruby-2.5-default
ruby: default to version 2.5
2018-09-01 11:17:13 +01:00
Frederik Rietdijk
4134048b6f Merge master into staging-next 2018-09-01 10:41:58 +02:00
Jörg Thalheim
4a74aca868
Merge pull request #45700 from Mic92/node-packages-v8
nodePackages: 6_x -> 8_x
2018-09-01 09:09:24 +01:00
Daiderd Jordan
85fdbf6123
cuter: use erlangR19 and cleanp expression
It fails to build using R20 and there's no new release available.
2018-08-31 22:27:13 +02:00
lewo
fc39e5c645
Merge pull request #41920 from fgaz/drawpile
drawpile: init at 2.0.10
2018-08-31 18:37:37 +02:00
Robert Schütz
93550cbddf Merge branch 'master' into staging-next 2018-08-31 17:32:48 +02:00
John Ericson
2c4a75e9ef
Merge pull request #45820 from obsidiansystems/dont-use-obsolete-platform-aliases
treewide: Dont use obsolete platform aliases
2018-08-31 09:56:10 -04:00
Silvan Mosberger
f7606a82ed
Merge pull request #43437 from MostAwesomeDude/cozy
Cozy
2018-08-31 15:29:41 +02:00
xeji
4db15ba7b8
Merge pull request #45748 from xeji/p/nfs-232
nfs-utils: 2.1.1 -> 2.3.2, integrate libnfsidmap
2018-08-31 14:23:56 +02:00
Rob Vermaas
195d81c45f julia: add 0.7 and 1.0 2018-08-31 10:57:33 +02:00
Ivan Malison
9a93fa292f notify-osd-customizable: init at 0.9.35+16.04.20160415 (#43226) 2018-08-31 09:27:08 +02:00
Jörg Thalheim
359227daa9
Merge pull request #45839 from oxij/pkgs/tor-browser-docstrings
treewide: write better docstrings for tor-browser things
2018-08-31 08:05:56 +01:00
Jan Tojnar
f0136e4bc8
Merge pull request #45638 from aanderse/incron
incron: init at 0.5.12
2018-08-31 06:54:58 +01:00
Jan Malakhovski
e4babb32d5 treewide: write better docstrings for tor-browser things 2018-08-31 03:33:25 +00:00
xeji
875714968c
Merge pull request #45747 from vbgl/default-ocaml-4.06
ocamlPackages: default to 4.06
2018-08-31 00:10:24 +02:00
Joseph Lukasik
aeb360caa3 ipfs-cluster: init at 0.5.0 2018-08-30 14:39:48 -07:00
John Ericson
0828e2d8c3 treewide: Remove usage of remaining redundant platform compatability stuff
Want to get this out of here for 18.09, so it can be deprecated
thereafter.
2018-08-30 17:20:32 -04:00
John Ericson
2c2f1e37d4 reewide: Purge all uses stdenv.system and top-level system
It is deprecated and will be removed after 18.09.
2018-08-30 17:20:32 -04:00
Robert Schütz
a9780a095b Merge branch 'master' into staging-next 2018-08-30 21:56:13 +02:00
xeji
d3036afd6d
Merge pull request #45432 from xeji/texlive-2018
[staging]: texlive: 2017 -> 2018
2018-08-30 20:42:03 +02:00
Jan Tojnar
efb16b5829
deadbeefPlugins.infobar: init at 1.4 2018-08-30 20:36:56 +02:00
Uli Baum
c62bb34f7a nfs-utils: 2.1.1 -> 2.3.2, integrate libnfsidmap
- switch source to kernel.org
- libnfsidmap 2.3.2 is built from the nfs-utils source,
  put it in nfs-utils.lib
- split outputs
- adapt sssd, the only other package using libnfsidmap
2018-08-30 19:55:54 +02:00
Matthew Pickering
bcccd13471 kythe: init at 0.0.28 (#45778)
Progress towards #27590
2018-08-30 19:24:31 +02:00
Alyssa Ross
7b4c7c4b59 extract_url: init at 1.6.2 (#45624)
Squashed from:
* extract_url: init at 1.6.2
* extract_url: purify build
* extract_url: move src to more conventional place
* extract_url: don't unnecessarily propagate
* extract_url: use installFlags instead of patch
* extract_url: use URL literal instead of string
* extract_url: fix make flags style
* extract_url: remove PodChecker dependency
2018-08-30 17:10:00 +02:00
Robert Schütz
4b4c871401 buttersink: move out of pythonPackages (#45783) 2018-08-30 16:33:53 +02:00
Vladimír Čunát
19c68fe28c
Merge branch 'master' into staging 2018-08-30 12:25:43 +02:00
Vladimír Čunát
88e4ac7a97
Merge #45636: nix-repl: throw an explanation 2018-08-30 10:27:11 +02:00
Wael Nasreddine
c928d69642 corgi: init at 0.2.3 (#45766) 2018-08-30 09:20:40 +02:00
xeji
f629d36560
Merge pull request #45411 from alyssais/linux-libre
linux-libre: init
2018-08-30 09:01:00 +02:00
Graham Christensen
a141b3aad8
Merge pull request #33686 from samueldr/artwork/iso
(Installation media) Bootloader artwork refresh
2018-08-29 15:31:13 -04:00
Frederik Rietdijk
6038628ea5 Merge master into staging-next 2018-08-29 20:54:55 +02:00
Peter Simons
10eb7526b5 Fix evaluation errors in libndtypes and libxnd. 2018-08-29 19:42:00 +02:00
xeji
683707ea03
dwm-git: init at 20180602 (#45716)
The latest tagged release dwm 6.1 is from 2015, so
the development version is much more current.
2018-08-29 19:39:10 +02:00
Michael Weiss
256e347dfe signal-desktop-beta: remove
This package was marked as broken since
9cb0b49673.
Reason: The package is outdated and keeping up with the beta releases
isn't really worth it (there are regular stable releases).
2018-08-29 17:28:58 +02:00
Vincent Laporte
474c0aa221
ocamlPackages: default to 4.06 2018-08-29 12:49:46 +00:00
Vincent Laporte
6d38ada0ba
wyrd: use OCaml 4.05 2018-08-29 12:49:36 +00:00
Vincent Laporte
f661b0dbf6
tlaps: use OCaml 4.05 2018-08-29 12:49:35 +00:00
Vincent Laporte
5670f77a90
obliv-c: use OCaml 4.05 2018-08-29 12:49:34 +00:00
Vincent Laporte
4d8c0d75b3
cubicle: use OCaml 4.05 2018-08-29 12:49:34 +00:00
Vincent Laporte
7211ee1aeb
haxe: use OCaml 4.05 2018-08-29 12:49:33 +00:00
Vincent Laporte
4d26e2a312
mldonkey: use OCaml 4.05 2018-08-29 12:49:33 +00:00
Vincent Laporte
271af919e3
coccinelle: use OCaml 4.05 2018-08-29 12:49:32 +00:00
Vincent Laporte
9b76bf991f
coq_8_5: use OCaml 4.05 2018-08-29 12:49:31 +00:00
Vincent Laporte
8cdb0c3cbd
opam: use OCaml 4.05 2018-08-29 12:49:31 +00:00
Vincent Laporte
be6769816d
statverif: use OCaml 4.05 2018-08-29 12:49:30 +00:00
Vincent Laporte
65f42595cf
sapic: use OCaml 4.05 2018-08-29 12:49:30 +00:00
Vincent Laporte
124639bd8f
jackline: use OCaml 4.05 2018-08-29 12:49:30 +00:00
Vincent Laporte
18b3b67689
alt-ergo: use OCaml 4.05 2018-08-29 12:49:29 +00:00
Vincent Laporte
c81d4f800e
acgtk: use OCaml 4.05 2018-08-29 12:49:29 +00:00
Vincent Laporte
28ee1ae69d
libbap: use OCaml 4.05 2018-08-29 12:49:28 +00:00
Vincent Laporte
b5a6e6cf01
unison: use OCaml 4.05 2018-08-29 12:49:28 +00:00
Jörg Thalheim
d314c4d3ce vala_0_28: remove 2018-08-29 11:52:28 +01:00
Jörg Thalheim
cbdcf6b4db vanubi: remove 2018-08-29 11:39:28 +01:00
Jörg Thalheim
3a56156866 vala_0_32: remove 2018-08-29 11:39:28 +01:00
Jörg Thalheim
ffba654405 vala_0_26: remove 2018-08-29 11:39:28 +01:00
Jörg Thalheim
e4881e221b finalterm: remove non-working version (#45737)
This is abandom-ware: https://worldwidemann.com/finally-terminated/
and it coredumps on startup
2018-08-29 11:13:54 +02:00
Jörg Thalheim
8f6d3a3c33 awesome-3-5: remove deprecated version (#45736)
this version is deprecated and no longer maintained by upstream:

  https://awesomewm.org/download/

Two years should have been enough for people to upgrade.
2018-08-29 11:12:56 +02:00
Uli Baum
c52174030e poppler_min: 0.61 -> 0.67
currently only used for texlive
2018-08-29 11:03:44 +02:00
Michael Hoang
8b7fe8910c compton, compton-git: Merge derivations 2018-08-29 12:47:35 +10:00
Jörg Thalheim
c748ac5bdd
Merge pull request #45721 from Mic92/remove-hurd
hurd: cleanup unmaintained target
2018-08-28 23:32:39 +01:00
Jan Tojnar
89586ed0d0
deadbeefPlugins.headerbar-gtk3: init at 1.2 2018-08-28 23:33:59 +02:00
Niclas
42bfaab927 bunny: init at 1.1 (#45714)
* bunny: init at 1.1

Motivation for this change

Pretty useful not to have to think about what system you're on when
doing basic (un)installation tasks.

* Fixed typo
2018-08-28 23:18:55 +02:00
Jörg Thalheim
9efffe0135 hurd: cleanup unmaintained target
This has been not touched in 6 years. Let's remove it to cause less
problems when adding new cross-compiling infrastructure.
This also simplify gcc significantly.
2018-08-28 22:18:02 +01:00
Vladimír Čunát
fd3927ac29
coreutils: split a coreutils-full version
- default coreutils is stripped of /share/ (11 -> 2 MiB)
- coreutils-full retains /share/ and adds openssl for faster *sum tools
- NixOS systemPackages contains coreutils-full
- *Support parameter defaults are moved inside
  (it seemed confusing to have `? false` and "at once" with `? isLinux`)

Closure considerations:
+ typical build-time closure will get lighter by ~9 MiB
- typical closure of NixOS installation will grow by ~2 MiB,
  due to referring to both versions.  I think it would be possible to
  re-use most of the utils between the two versions, but the expression
  would get much more complex.

I considered having stdenv with minimal coreutils and the default
`coreutils` attribute being full, but it turned out there were too many
trivial references in nixpkgs, so it didn't seem easy to keep rebuild
impact of openssl from growing significantly.
2018-08-28 22:17:07 +02:00
John Wiegley
fa817fb9f7
imgcat: New expression 2.3.0 2018-08-28 12:51:09 -07:00
Daiderd Jordan
c66c469433
Merge pull request #45352 from LnL7/darwin-vim-x11
vim_configurable: fix darwin build with guiSupport
2018-08-28 21:14:22 +02:00
Michael Fellinger
baefa983d3 ruby: default to version 2.5 2018-08-28 14:38:48 +02:00
Jörg Thalheim
1b09d06dcb twitterBootstrap: v2 -> v3
cc @Profpatsch

v2 no longer compiles and is ancient
2018-08-28 12:52:13 +01:00
Jörg Thalheim
bf56bc7b49 nodePackages: 6_x -> 8_x 2018-08-28 11:15:07 +01:00
Jörg Thalheim
3f8bbbdc5c enableDebugging: fix usage example 2018-08-28 09:28:36 +01:00
Jörg Thalheim
ff9a2297ac
Merge pull request #45467 from ktf/init-alibuild
alibuild: init at 1.5.3
2018-08-28 08:50:18 +01:00
Anderson Torres
18006f8edc
Merge pull request #45493 from NegaNexus/master
faustlive: init at 2017-12-05
2018-08-27 21:28:45 -03:00
Raitis Veinbahs
1ae5f05d16 vitetris: init at 0.57.2 (#45672) 2018-08-27 20:30:18 +02:00
Joachim F
c383462c79
Merge pull request #44914 from costrouc/costrouc/xnd-init
libxnd and libndypes: init at 0.2.0dev3
2018-08-27 17:40:33 +00:00
Chris Ostrouchov
dd12060b94
libxnd: init at 0.2.0dev3
General container that maps a wide range of Python values directly to memory."
2018-08-27 12:30:18 -04:00
adisbladis
faf2f0b0e1
Merge pull request #45630 from adisbladis/go-1_11
go_1_11: init at 1.11 and set as default
2018-08-27 21:34:56 +08:00
Frederik Rietdijk
7945295410 Merge master into staging 2018-08-27 08:21:50 +02:00
Francesco Gazzetta
62a2574eb3 drawpile: init at 2.0.11 2018-08-26 21:00:39 +02:00
Francesco Gazzetta
ff583d8114 endgame-singularity: init at 0.30c (#45057) 2018-08-26 19:38:52 +02:00
adisbladis
9336e893eb
buildGoPackage: Use go 1.11 by default 2018-08-27 00:56:59 +08:00
adisbladis
90d3ed0096
go_1_11: init at 1.11 2018-08-26 23:11:10 +08:00
Graham Christensen
cca5717170
Merge pull request #45623 from bignaux/xkbd
xkbd: init at 0.8.18
2018-08-26 10:57:59 -04:00
Bignaux Ronan
63257c88c3 xkbd: init at 0.8.18 2018-08-26 15:06:52 +02:00
Jörg Thalheim
110b7b224a
Merge pull request #45645 from xeji/p/ceph
ceph: fix build, 12.2.2 -> 12.2.7
2018-08-26 13:51:03 +01:00
Uli Baum
cd8bcb5f9f ceph: fix build, 12.2.2 -> 12.2.7
Since 772eef9168, Boost
doesn't support by python by default, which broke ceph.

Also bump to 12.2.7, the latest release of ceph 12.
2018-08-26 13:11:57 +02:00
Frederik Rietdijk
b61b993b75 Merge master into staging 2018-08-26 12:10:05 +02:00
Augustin Borsu
359368f76f jupyter: init
Top-level jupyter package that, given kernel definitions, can be used with
various kernels.
2018-08-26 12:00:54 +02:00
Augustin Borsu
16f4076c70 jupyter-kernel: init
This is a meta package for creating a jupyter notebook
kernel definition folder. It must be used in conjunction
with jupyter or jupyterhub to make different environements
availables.
2018-08-26 12:00:54 +02:00
Aaron Andersen
63c3b7ce10 fixed license
added incron to pkgs
2018-08-25 20:51:39 -04:00
Francesco Gazzetta
0fd58ed099 20kly: init at 1.4 (#45056) 2018-08-26 02:23:32 +02:00
Silvan Mosberger
99e663d4e1
Throw warning for nix-repl attribute 2018-08-26 02:17:11 +02:00
xeji
90ed75d522
Merge pull request #43634 from jfrankenau/init-split2flac
split2flac: init at 122
2018-08-26 01:42:53 +02:00
Jan Tojnar
ce3584860c
libmanette: init at 0.2.1 2018-08-26 01:18:32 +02:00
xeji
9fcffb5bd4
Merge pull request #42673 from tadfisher/vaapi-intel-hybrid
cmrt, vaapi-intel-hybrid, vaapiIntel: init at 1.0.6, init at 1.0.2, add enableHybridCodec option
2018-08-26 01:07:41 +02:00
Michiel Leenaars
de61d0da20 ydiff: init at 1.1 2018-08-25 22:52:51 +02:00
Frederik Rietdijk
c71942eb7e
Merge pull request #44752 from costrouc/costrouc/lammps-update
material science packages (init and update): lammps, python - ase, pymatgen-lammps, lammps-cython, dftfit
2018-08-25 19:03:36 +02:00
adisbladis
1b2cc51031
Merge pull request #45575 from uri-canva/jdk-10-darwin
openjdk10: add darwin support
2018-08-26 00:25:53 +08:00
Frederik Rietdijk
5c3e607fb2 mypy: use toPythonApplication
Top-level Python packages are applications, not libraries.
2018-08-25 18:07:19 +02:00
Bas van Dijk
7d04961c95
Merge pull request #44389 from Mic92/es6
elasticsearch: use 6.x as default version, remove unsupported releases
2018-08-25 17:04:07 +02:00
Jan Tojnar
05992b9b1b
gtk-vnc: rename from gtkvnc
Upstream uses gtk-vnc, let’s be consistent.
2018-08-25 15:57:23 +02:00
Jan Tojnar
ae756f9d02
libgrss: init at 0.7.0 2018-08-25 15:57:22 +02:00
Thomas Tuegel
b55e3f6449
Merge pull request #45376 from bkchr/kde_applications_18_08_0
kde-applications: 18.04.03 -> 18.08.0
2018-08-25 08:49:20 -05:00
xeji
740c7884d8
Merge pull request #45570 from leenaars/todoman
todoman: init at 3.4.0
2018-08-25 00:36:26 +02:00
Michiel Leenaars
4768d2e13a todoman: init at 3.4.0 2018-08-24 23:01:15 +02:00
Samuel Dionne-Riel
41e7de42de Use a themed grub for the installer image
This replaces systemd-boot with grub, it is at feature parity, as in it
can do everything systemd-boot did in the previous commit.
2018-08-24 13:04:56 -04:00
Bastian Köcher
7229b8db08 kdevelop: 5.1.2 -> 5.2.4 2018-08-24 17:35:58 +02:00
Bastian Köcher
6e1709734e kde-applications: 18.04.03 -> 18.08.0 2018-08-24 17:35:49 +02:00
Giulio Eulisse
d895f47d68
alibuild: init at 1.5.3 2018-08-24 10:35:32 +02:00
Vladimír Čunát
7db611f2af
Merge branch 'staging'
Includes libX11 security update.
2018-08-24 09:19:43 +02:00
Uri Baghin
410a51747c openjdk10: add darwin support 2018-08-24 16:35:59 +10:00
Léo Gaspard
1bc48e63fd wabt: init at 1.0.5 2018-08-23 21:28:54 -07:00
Thys
7ef0a74d1b faustlive: init at 2017-12-05 2018-08-23 19:29:54 -07:00
Daiderd Jordan
cfc3d7c918
vim_configurable: use gtk3 on darwin 2018-08-24 00:38:12 +02:00
Bas van Dijk
551fec4467 Merge branch 'master' into es6 2018-08-23 23:41:27 +02:00
xeji
058ab4cdf5
Merge pull request #44452 from FRidh/llvm_34
llvmPackages_34: remove unused
2018-08-23 23:33:28 +02:00
Benjamin Hipple
291de70ed6 scs: init at 2.0.2 (#45294) 2018-08-23 23:26:41 +02:00
Jörg Thalheim
60b05119a5
Merge pull request #45513 from Mic92/tor
tor: fix build by upgrading openssl
2018-08-23 22:19:36 +01:00
xeji
2df53dee43
Merge pull request #45358 from leenaars/eunomia
eunomia-font: init at 0.200
2018-08-23 23:12:48 +02:00
Jörg Thalheim
e3d262e0d4 tor: fix build by upgrading openssl
One test segfaulted with openssl_1_0_x. openssl_1_1 seems to work fine.
As libevent still uses openssl_1_0_x we disable ssl support there to
avoid having to different ssl versions linked into tor. Longterm it
would be a better solution to upgrade openssl also in libevent. But this
would require more testing/time as we have many dependent packages of
libevent and we would probably need turn to on openssl 1.1 by default
globally. After all libevent is rather small compared to tor.
2018-08-23 22:10:51 +01:00
Jonathan Queiroz
847291228f subberthehut: init at 20 (#45366) 2018-08-23 23:07:20 +02:00
xeji
30ac3b14ab
Merge pull request #45351 from swdunlop/nats
gnatsd: init at 1.2.0
2018-08-23 22:49:51 +02:00
Francesco Gazzetta
599963c81e testdisk-photorec: init at 7.0 (#45329) 2018-08-23 22:40:54 +02:00
Bignaux Ronan
70d5f16898 astrolabe-generator: init at 3.3 (#45429) 2018-08-23 22:35:05 +02:00
Joachim F
0d80f9659c
Merge pull request #45305 from wucke13/apmplanner2
apmplanner2: init at 2.0.26
2018-08-23 14:07:45 +00:00
Cole Mickens
6d64024734 keybase: 2.1.0 -> 2.5.0 (#44698) 2018-08-22 22:57:22 +02:00
xeji
162e28f4ad
Merge pull request #45468 from dtzWill/update/boost-168
boost168: init
2018-08-22 22:34:24 +02:00
Daiderd Jordan
6a335f993e
Merge pull request #39502 from LnL7/darwin-harfbuzz
harfbuzz: add CoreText support for darwin
2018-08-22 21:49:01 +02:00
Vladimír Čunát
e78fd23564
Merge branch 'master' into staging
Hydra: ?compare=1474932
2018-08-22 20:57:14 +02:00
Bignaux Ronan
77085f8324 navit: svn-5576 -> 0.5.1 (#45465) 2018-08-22 20:10:32 +02:00
Will Dietz
1f723abfac boost168: init
Drop patch from 1.67 that's already included.
2018-08-22 10:21:44 -05:00
Will Dietz
cf68a14a01
Merge pull request #44650 from dtzWill/update/r2-2.8.0
radare2: 2.7.0 -> 2.8.0, radare2-cutter: 1.6 -> 1.7, refactor
2018-08-22 09:40:49 -05:00
Samuel Dionne-Riel
05310e3172
Merge pull request #44919 from Vodurden/init-undervolt
undervolt: init at 0.2.8
2018-08-22 10:13:55 -04:00
Jörg Thalheim
dc8cae21a8 radare2: rework update script to include cutter's radare2 version 2018-08-22 11:45:34 +01:00