Commit Graph

158208 Commits

Author SHA1 Message Date
Jan Tojnar
20d4f2f4b7
biber: Fix eval (#60883)
biber: Fix eval
2019-05-03 22:15:58 +02:00
Austin Seipp
c8cb015ff6
linuxPackages.perf: add libopcodes as a buildInput
Newer versions of perf in Linux 5.1+ support disassembling and
annotating eBPF programs inside the kernel. In order to do this, it uses
libbfd's support for bpf disassembly. There are two parts: libopcodes
and libbfd.

The 'perf' build system seems to expect libopcodes/libbfd to go "hand in
hand" -- always together, if one or the other is installed. If the build
system detects libbfd is available, then an import of <dis-asm.h> is
performed, but this fails since it wasn't in the buildInput. Fixing this
should be an easy, backwards-compatible change.

Fixes #60891, allowing linuxPackages_testing.perf to build again
(currently kernel version 5.1.0-rc7).

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-05-03 15:10:46 -05:00
Kevin Cox
bd78d55f5a
wasm-pack: Update hash.
The previous hash was generated on aarch64. Due to https://github.com/NixOS/nixpkgs/issues/60668 the hash is different on different platforms. I am updating to use the x86_64-linux hash to fix building on hydra.
2019-05-03 21:04:37 +01:00
Mario Rodas
069aeee3b8
Merge pull request #60704 from xrelkd/update/tmux
tmux: 2.9 -> 2.9a
2019-05-03 14:59:28 -05:00
Renaud
a851074541
pax-rs: restrict to Linux platforms
It fails to build on Darwin
2019-05-03 21:53:48 +02:00
Mario Rodas
d4cbc6707c
Merge pull request #60280 from marsam/fix-build-pytest-dependency
pythonPackages.pytest-dependency: fix build
2019-05-03 14:37:45 -05:00
Matthew Glazar
4c305b73b6 microsoft_gsl: use fetchFromGitHub
fetchFromGitHub has friendlier ways to download sources. Use it instead
of fetchgit for microsoft_gsl.
2019-05-03 12:29:37 -07:00
Justin Wood
6a03c9feac obs-studio: 23.0.2 -> 23.1.0 2019-05-03 14:17:14 -04:00
strager
21112a7c16 libgcrypt: fix 1.5 build on macOS (#59507)
libgcrypt-1.5's configure script incorrectly detects x86_64-apple-darwin
(macOS) as an ELF platform. This causes failures when compiling assembly
sources. Backport libgcrypt's fix for this issue, fixing libgcrypt-1.5's
build on macOS.
2019-05-03 14:14:17 -04:00
Matthew Glazar
cda148062a microsoft_gsl: 2017-02-13 -> 2.0.0
GSL now has an official release. Upgrade microsoft_gsl to the latest
release (made August 20, 2018).
2019-05-03 11:11:40 -07:00
Joachim F
a602026454
Merge pull request #60867 from manveru/update-taskjuggler
taskjuggler: fix security issues
2019-05-03 17:46:18 +00:00
Jan Tojnar
04eddeb969
biber: Fix eval
Remove UnicodeCollate dependency, which is part of Perl 5.28 and
does not exist separately anymore.

Add PerlIO::utf8_strict, which lack thereof Biber complains about
during build.
2019-05-03 19:45:10 +02:00
Florian Klink
c53b8aa77b
Merge pull request #60620 from bachp/gitlab-runner-11.10.1
gitlab-runner: 11.9.2 -> 11.10.1
2019-05-03 19:41:50 +02:00
Renaud
2a3ce66ae8
Merge pull request #60755 from r-ryantm/auto-update/qbs
qbs: 1.12.2 -> 1.13.0
2019-05-03 19:26:45 +02:00
Austin Seipp
f40a559cbb
bpftrace: nuke some unneeded files from $out
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-05-03 12:25:59 -05:00
Renaud
e954384854
Merge pull request #60629 from r-ryantm/auto-update/memcached
memcached: 1.5.13 -> 1.5.14
2019-05-03 19:21:08 +02:00
Andrew Childs
ed81e9eba8 ccid: set platforms to unix (#60871)
Upstream supports Linux, macOS and various Unixes.
2019-05-03 13:19:50 -04:00
Austin Seipp
89d5bfc2db
Merge pull request #60844 from thoughtpolice/nixpkgs/bpftrace-update
bpftrace: unstable-2018-10-27 -> 0.9
2019-05-03 12:09:57 -05:00
Renaud
323042355e
Merge pull request #60832 from marsam/fix-build-looking-glass-client
looking-glass-client: fix build
2019-05-03 19:07:52 +02:00
Renaud
c0a369fee3
Merge pull request #60809 from manveru/fpm-update
fpm: 1.9.3 -> 1.11.0, use bundlerApp
2019-05-03 19:01:31 +02:00
Michael Fellinger
09d0898eff redis-dump: 0.3.5 -> 0.4.0 2019-05-03 18:57:51 +02:00
Renaud
c12dcc9c01
Merge pull request #60638 from klntsky/fix-pax-rs
pax-rs: fix missing Cargo.lock
2019-05-03 18:54:23 +02:00
Michael Fellinger
0552899ebd gem-config: rugged needs which 2019-05-03 18:52:36 +02:00
Michael Fellinger
cd1bfc3045 ppl-address-book: delete 2019-05-03 18:47:17 +02:00
Michael Fellinger
97ee366c04 r10k: 2.4.3 -> 3.2.0 2019-05-03 18:42:01 +02:00
Kevin Cox
d30caa956a
Merge pull request #58644 from dhl/wasm-pack
wasm-pack: init at 0.8.1
2019-05-03 17:38:45 +01:00
Austin Seipp
241063ca84
bpftrace: unstable-2018-10-27 -> 0.9
Update bpftrace to the latest pre-release, with a real version number.

The most notable change now is that bpftrace can use a stable version of
the 'bcc' toolchain in order to build, meaning no more hacks are needed
to clone the source code and fix up the build system, etc. This
simplifies things greatly and removes the old bcc-source patch.

Similarly, we can remove our custom gtests patch (which disabled the
build) by just passing -DBUILD_TESTING=FALSE when running cmake. This
was also added upstream recently.

However, something does still need to be fixed, at a cost: bpftrace
requires the kernel -dev package because it wants both objects and
include directories (some files are only shipped in one or the other).
Therefore, we remove the dependency on linuxHeaders and instead use
kernel.dev as the sole input to the build.

This is both a positive and a negative: the positive is that tools work
without annoying fatal errors, and that the bpf toolchain is
synchronized to the linuxPackages.kernel derivation it was built
against. The downside is that the .dev expression is much heavier as a
dependency, so bpftrace is now closer to 700mb in closure size. (This
especially hurts across kernel upgrades requiring a whole new rebuild,
especially if you have existing nixos generations that won't GC, etc.)

We probably want to slim this down substantially in the future (and
there may be a few ways to do that), but as this will probably also
touch bcc, and as a first cut of the pre-releases, this is probably fine
while we work out other kinks.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-05-03 11:32:58 -05:00
Peter Spiess-Knafl
59b235d793 keybase,keybase-gui: 3.0.0 -> 3.2.2 2019-05-03 18:28:25 +02:00
Austin Seipp
d416b263cf
Merge pull request #60846 from thoughtpolice/nixpkgs/crdb-update
cockroachdb: 2.1.6 -> 19.1.0
2019-05-03 11:27:48 -05:00
Renaud
1aa996679f
Merge pull request #60652 from r-ryantm/auto-update/opencascade-occt
opencascade-occt: 7.3.0p2 -> 7.3.0p3
2019-05-03 18:18:43 +02:00
Mario Rodas
14fa46a3f8
Merge pull request #60677 from royneary/git-bug-0.5.0
gitAndTools.git-bug: 0.4.0 -> 0.5.0
2019-05-03 10:50:08 -05:00
Renaud
617019aed3
Merge pull request #60863 from romildo/upd.qogir-theme
qogir-theme: 2019-04-07 -> 2019-05-03
2019-05-03 17:22:53 +02:00
royneary
71a3f9f9e9 gitAndTools.git-bug: remove deps.nix 2019-05-03 17:13:14 +02:00
Dmitry Kalinkin
b6d0bdf513
texlive: provide bin.texlive on Darwin too
texlive attribute was accidentally added in attrset wrapped with

  stdenv.lib.optionalAttrs (!stdenv.isDarwin)

Fixes: dbc2c1c4b8 ('texlive: add missing perl dependencies for latexindent')
2019-05-03 10:33:04 -04:00
Renaud
daf1010117
Merge pull request #60855 from manveru/bcat-update
bcat: use https rubygems
2019-05-03 16:18:55 +02:00
Mario Rodas
b1bd1854d0
Merge pull request #59658 from r-ryantm/auto-update/python3.7-identify
python37Packages.identify: 1.2.2 -> 1.4.1
2019-05-03 08:33:12 -05:00
Michael Fellinger
e287749936 taskjuggler: fix security issues 2019-05-03 14:38:19 +02:00
Michael Fellinger
9535e3eb2e riemann-dash: 0.2.12 -> 0.2.14, use bundlerApp 2019-05-03 14:24:13 +02:00
Michael Fellinger
094b713ccd mpdcron: 20130809 -> 20161228 2019-05-03 14:16:11 +02:00
Renaud
7c506060fd
Merge pull request #60817 from r-ryantm/auto-update/unrar
unrar: 5.7.4 -> 5.7.5
2019-05-03 14:00:22 +02:00
Ryan Mulligan
3c25496519
Merge pull request #60719 from r-ryantm/auto-update/python3.7-google-cloud-storage
python37Packages.google_cloud_storage: 1.14.0 -> 1.15.0
2019-05-03 04:52:31 -07:00
Robert Schütz
15ccf1fe4a python.pkgs.jsbeautifier: 1.9.1 -> 1.10.0 2019-05-03 13:49:33 +02:00
José Romildo Malaquias
10ffb38643 qogir-theme: 2019-04-07 -> 2019-05-03 2019-05-03 08:35:12 -03:00
Mario Rodas
1b816da6c3
Merge pull request #60726 from r-ryantm/auto-update/pre-commit
gitAndTools.pre-commit: 1.15.1 -> 1.15.2
2019-05-03 06:30:45 -05:00
Mario Rodas
f0ec7c6f07
Merge pull request #60718 from r-ryantm/auto-update/python3.7-google-auth-oauthlib
python37Packages.google-auth-oauthlib: 0.2.0 -> 0.3.0
2019-05-03 06:24:20 -05:00
R. RyanTM
4f4d3f3d62
python37Packages.identify: 1.2.2 -> 1.4.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-identify/versions
2019-05-03 06:21:25 -05:00
Mario Rodas
1ffb83e8e4
Merge pull request #60736 from r-ryantm/auto-update/python3.7-pytest-tornado
python37Packages.pytest-tornado: 0.6.0 -> 0.7.0
2019-05-03 06:10:19 -05:00
R. RyanTM
d29c13b4de
python37Packages.google-auth-oauthlib: 0.2.0 -> 0.3.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-google-auth-oauthlib/versions
2019-05-03 05:54:31 -05:00
Michael Fellinger
9a0596ee97 mikutter: 3.5.13 -> 3.8.7 (#60808) 2019-05-03 12:48:13 +02:00
Mario Rodas
7da6230cdd
Merge pull request #60751 from r-ryantm/auto-update/python3.7-vega
python37Packages.vega: 2.0.1 -> 2.1.0
2019-05-03 05:45:34 -05:00
Joachim F
5ad1e9f0bf
Merge pull request #60575 from dtzWill/feature/obfs4proxy
obfs4: init at 0.0.10, use in tor-browser-bundle's, tor service
2019-05-03 09:48:02 +00:00
Joachim F
a8ad94a231
Merge pull request #60847 from dtzWill/update/tor-4.0.5
tor: 0.3.5.7 -> 0.4.0.5
2019-05-03 09:46:59 +00:00
Renaud
6ed0d788a2
Merge pull request #60801 from r-ryantm/auto-update/synthv1
synthv1: 0.9.6 -> 0.9.7
2019-05-03 11:43:57 +02:00
Renaud
db6839a169
Merge pull request #60778 from r-ryantm/auto-update/samplv1
samplv1: 0.9.6 -> 0.9.7
2019-05-03 11:43:19 +02:00
Renaud
45b7685314
Merge pull request #60800 from r-ryantm/auto-update/sysstat
sysstat: 12.1.3 -> 12.1.4
2019-05-03 11:36:28 +02:00
Michael Fellinger
1ff30af013 sass: 3.5.6 -> 3.7.4 2019-05-03 11:28:23 +02:00
Michael Fellinger
473feb7fa3 bcat: use https rubygems 2019-05-03 11:21:57 +02:00
Leah Neukirchen
23336fb44a extrace: init at 0.7 2019-05-03 18:19:57 +09:00
Michael Fellinger
df77c19f75 lolcat: use bundlerApp, fix audit warning 2019-05-03 11:18:10 +02:00
R. RyanTM
045078f096 tortoisehg: 4.9 -> 4.9.1 (#60806)
* tortoisehg: 4.9 -> 4.9.1

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tortoisehg/versions

* tortoisehg: update meta.homepage
2019-05-03 11:14:31 +02:00
nyanloutre
07f53c71e8 electron-cash: enable tests 2019-05-03 17:43:06 +09:00
R. RyanTM
804105e6b7 vbam: 2.1.2 -> 2.1.3 (#60821)
* vbam: 2.1.2 -> 2.1.3

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/visualboyadvance-m/versions

* vbam: refactor build inputs
2019-05-03 10:16:32 +02:00
Timo Kaufmann
5905034750
vimPlugins: update (#60850) 2019-05-03 10:09:05 +02:00
Michael Raskin
9dd83eb657
Merge pull request #60780 from c0bw3b/pkg/mdds
mdds: 1.3.1 -> 1.4.3
2019-05-03 07:55:31 +00:00
Peter Hoeg
4c56c1ce9e
Merge pull request #60829 from peterhoeg/f/krunner_pass
krunner-pass: fix the build
2019-05-03 15:49:36 +08:00
Peter Hoeg
bcff2e14e1 krunner-pass: fix the build 2019-05-03 15:48:54 +08:00
Will Dietz
0d5e0da42d tor: 0.3.5.7 -> 0.4.0.5
https://gitweb.torproject.org/tor.git/plain/ChangeLog?h=tor-0.4.0.5
2019-05-03 02:02:31 -05:00
Austin Seipp
fecdbd9a49
cockroachdb: 2.1.6 -> 19.1.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-05-03 01:50:31 -05:00
Renaud
f58482658e
Merge pull request #60822 from r-ryantm/auto-update/vnstat
vnstat: 2.1 -> 2.2
2019-05-03 08:20:16 +02:00
Elis Hirwing
6698c37fe1
Merge pull request #60630 from etu/drop-emby
emby: Drop package and module and refer to jellyfin
2019-05-03 07:58:30 +02:00
Silvan Mosberger
d6ddcf318e
Merge pull request #60812 from r-ryantm/auto-update/translate-shell
translate-shell: 0.9.6.9 -> 0.9.6.10
2019-05-03 07:29:05 +02:00
Mario Rodas
6e90393ead
looking-glass-client: fix build
spice-protocol removed the spice/error_codes.h header file [1], which
looking-glass-client was still using.

[1] 334cef51d0
2019-05-02 22:06:56 -05:00
Mario Rodas
cdf234714b
Merge pull request #60792 from xrelkd/update/rustup
rustup: 1.18.1 -> 1.18.2
2019-05-02 21:50:05 -05:00
Jan Tojnar
9f4ae182c1
sublime3-dev: 3203 → 3208
Build 3208
21 April 2019

    Mac: Added a workaround for a macOS OpenGL driver bug in 10.14.4

Build 3206
5 April 2019

    Performance improvements

Build 3205
3 April 2019

    Improved scrolling logic in some scenarios
    Linux: Fixed compatibility with old Linux distributions

Build 3204
2 April 2019

    Mac: Added a workaround for a MacOS issue with DisplayLink adapters
    Linux: Tweaked the way text scaling is handled
    Improved file indexing behavior in some scenarios
    Fixed block carets changing the way text selection works
2019-05-03 04:36:12 +02:00
Jan Tojnar
a8293a0848
common-updater-scripts: fix fallback version detection
parseDrvName returns a set containing version attribute, not our customizable key.
2019-05-03 04:34:45 +02:00
Jan Tojnar
b85cbd96c2
gnomeExtensions.gsconnect: 21 → 23
https://github.com/andyholmes/gnome-shell-extension-gsconnect/releases/tag/v22
2019-05-03 04:34:43 +02:00
xrelkd
7c6679d787
rustup: 1.18.1 -> 1.18.2 2019-05-02 21:18:10 -05:00
Austin Seipp
0d2b66dff2
liburing: bump, fix version (1.0.0pre92_7b989f3)
I accidentally got the number of commits wrong in the previous
prerelease version string. This is now fixed.

Generally, this would result in functions like builtins.compareVersions
to give incorrect results, so 'nix-env -u' doesn't work. But I'm
justifying it here, because: most people use it as a library, so the
hash change is all that matters. Plus, I only authored this a week or
so ago in upstream, so this change is fast enough that I think people
will be fine with it and can work around, especially since it's
unreleased in any stable channel.

This also bumps the library to the newest version, which contains some
bugfixes, and now installs the manpages into the $man output for us.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-05-02 19:32:05 -05:00
worldofpeace
d3a3ea0257
Merge pull request #60815 from pacien/riot-v1.0.8
riot-desktop: 1.0.7 -> 1.0.8
2019-05-02 20:21:43 -04:00
R. RyanTM
765a58918b vnstat: 2.1 -> 2.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/vnstat/versions
2019-05-02 17:18:15 -07:00
worldofpeace
26d0b144c2
Merge pull request #60814 from r-ryantm/auto-update/typora
typora: 0.9.68 -> 0.9.70
2019-05-02 20:17:54 -04:00
Alyssa Ross
3e3db49d9d
Merge pull request #60742 from fgaz/twemoji/12
twemoji-color-font: 11.2.0 -> 12.0.1 + refactor
2019-05-02 23:56:56 +00:00
R. RyanTM
7893a6e2c0 unrar: 5.7.4 -> 5.7.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/unrar/versions
2019-05-02 16:24:30 -07:00
worldofpeace
a1b3031232
Merge pull request #60730 from r-ryantm/auto-update/python3.7-pyatspi
python37Packages.pyatspi: 2.32.0 -> 2.32.1
2019-05-02 19:06:27 -04:00
pacien
2e9c8649f7 riot: add maintainer note 2019-05-03 01:03:19 +02:00
Jan Tojnar
00f52f0134
dropbox-cli: Fix and add Nautilus extension (#60752)
dropbox-cli: Fix and add Nautilus extension
2019-05-03 01:02:23 +02:00
pacien
d0cc03e8a3 riot-desktop: 1.0.7 -> 1.0.8 2019-05-03 00:55:30 +02:00
R. RyanTM
bca4fdd0c9 typora: 0.9.68 -> 0.9.70
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/typora/versions
2019-05-02 15:47:34 -07:00
Vladyslav M
ea97fe2ce4
s-tar: 1.5.3 -> 1.6 (#60468)
s-tar: 1.5.3 -> 1.6
2019-05-03 01:28:14 +03:00
Michael Fellinger
6c3d774ca0 ejson: 1.2.0 -> 1.2.1 2019-05-02 23:58:48 +02:00
Michael Fellinger
aed27facc0 fpm: 1.9.3 -> 1.11.0, use bundlerApp 2019-05-02 23:51:11 +02:00
R. RyanTM
a872d68060 translate-shell: 0.9.6.9 -> 0.9.6.10
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/translate-shell/versions
2019-05-02 14:50:09 -07:00
R. RyanTM
083176a6e6 qsampler: 0.5.4 -> 0.5.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qsampler/versions
2019-05-02 23:14:59 +02:00
R. RyanTM
3b11620157 qownnotes: 19.4.1 -> 19.4.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qownnotes/versions
2019-05-02 23:14:31 +02:00
R. RyanTM
13f7105a8c qjackctl: 0.5.6 -> 0.5.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qjackctl/versions
2019-05-02 23:14:12 +02:00
R. RyanTM
092cfde875 teamviewer: 14.2.2558 -> 14.2.8352
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/teamviewer/versions
2019-05-02 13:44:37 -07:00
Renaud
11a185b61f
softether_4_25: restrict to x86_64-linux 2019-05-02 22:42:16 +02:00
pacien
1fc56f7789 riot-web: add pacien as maintainer 2019-05-02 22:41:06 +02:00
R. RyanTM
eff5e589de synthv1: 0.9.6 -> 0.9.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/synthv1/versions
2019-05-02 13:29:21 -07:00
Vladyslav M
bd941433d0
osl: 1.10.2 -> 1.10.4 (#60655)
osl: 1.10.2 -> 1.10.4
2019-05-02 23:24:51 +03:00