Commit Graph

6265 Commits

Author SHA1 Message Date
Sarah Brofeldt
048724c4af
Merge pull request #34971 from Twey/master
godot: 2.1.4 -> 3.0 + godot_headers
2018-03-27 17:29:27 +02:00
Tim Steinbach
945b681d3b
ammonite: 1.0.5 -> 1.1.0 2018-03-27 08:59:09 -04:00
Tim Steinbach
ca28546bfc
sbt: 1.1.1 -> 1.1.2 2018-03-27 08:56:36 -04:00
Rodney Lorrimar
65b14735d2
buildkite-agent: 2.6.9 -> 2.6.10
https://github.com/buildkite/agent/releases/tag/v2.6.10
2018-03-27 10:55:52 +01:00
lufia
86d719c601 ct: 0.5.0 -> 0.7.0 2018-03-27 14:59:24 +09:00
Michiel Leenaars
6ab4d8ac87 panopticon: init -> 0.16.0 2018-03-26 22:42:36 +02:00
Brendan Miller
58d520b824 pants: 1.3.0 -> 1.4.0
Tested via running "nix-build -A pkgs.pants"
2018-03-26 08:40:50 -04:00
Tobias Mayer
4930caae80 cquery: init at 2018-03-25 2018-03-26 00:51:41 +02:00
Matthew Bauer
675dc1bfbf apache-ant: init 1.9
1.9.x is a legacy version of ant supporting Java 5, 6, and 7

Fixes #37747
2018-03-25 14:11:00 -05:00
Vincent Laporte
387d791663 ocamlPackages.findlib: automatically populate the CAML_LD_LIBRARY_PATH env. variable
With directories of the form:
  lib/ocaml/${ocaml.version}/site-lib/stubslibs
2018-03-25 18:33:13 +02:00
Vincent Laporte
2455478754 ocamlPackages.findlib: fix META for library threads 2018-03-25 18:33:13 +02:00
Michael Raskin
82b41525c0
Merge pull request #37761 from bachp/gitlab-runner-10.6.0
gitlab-runner: 10.5.0 -> 10.6.0
2018-03-25 13:27:36 +00:00
Daiderd Jordan
319c61c893
ragel: fix clang build
/cc ZHF #36454
2018-03-25 14:41:08 +02:00
Pascal Bach
6e863d1558 gitlab-runner: 10.5.0 -> 10.6.0 2018-03-25 14:09:59 +02:00
Matthew Justin Bauer
8f3091939b
Merge pull request #37752 from ryantm/fix-urls
treewide: use more HTTPS URLs
2018-03-25 00:40:17 -05:00
Ryan Mulligan
b189247ba0 treewide: use more HTTPS URLs
Uses the HTTPS url for cases where the existing URL has a permanent
redirect. For each domain, at least one fixed derivation URL was
downloaded to test the domain is properly serving downloads.

Also fixes jbake source URL, which was broken.
2018-03-24 22:04:25 -07:00
Robin Gloster
f59a544bf1
jsduck: fix build
json 1.8.3 is broken with ruby 2.4
2018-03-24 14:07:26 +01:00
Ryan Mulligan
88d2722d5f waf: 2.0.4 -> 2.0.6
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.0.6 with grep in /nix/store/5rgayqfl64bn9pyrfsc9kcm2c4vdqybi-waf-2.0.6
- found 2.0.6 in filename of file in /nix/store/5rgayqfl64bn9pyrfsc9kcm2c4vdqybi-waf-2.0.6
2018-03-23 14:53:24 -05:00
Matthew Justin Bauer
6ffbed890f
Merge pull request #37080 from ryantm/auto-update/pmd
pmd: 6.0.1 -> 6.1.0
2018-03-23 14:48:51 -05:00
Tuomas Tynkkynen
a8eb2c9ef9 glslviewer: 1.2 -> 2018-01-31, fixes build 2018-03-23 21:05:50 +02:00
Austin Seipp
f330b48b64 jhiccup: init at 2.0.8
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-03-23 13:42:10 -05:00
Benjamin Saunders
3808369103 vulkan-loader: 1.0.61.1 -> 1.1.70.0
Lockstep glslang and spirv-tools updates included
2018-03-22 21:41:04 -07:00
Andrew Childs
b4888489e3 avrdude: add darwin platform 2018-03-23 01:26:11 +01:00
Matthew Justin Bauer
68f6915083
Merge branch 'master' into hyper-haskell 2018-03-22 11:29:45 -05:00
Jan Tojnar
9e5fa0abed
valadoc: fix build 2018-03-22 07:46:48 +01:00
Jan Tojnar
bfa24c12a5
meson: set multiple output dirs in setup hook
Closes: #32636
2018-03-22 07:33:49 +01:00
Jan Tojnar
fe73013e7d
meson: allow dirs outside of prefix
Upstream insists on not allowing bindir and other dir options
outside of prefix for some reason:

https://github.com/mesonbuild/meson/issues/2561

We remove the check so multiple outputs can work sanely.
2018-03-22 07:33:49 +01:00
Jan Tojnar
de910a040b
meson: fix rpath fixup
In common distributions, RPATH is only needed for internal libraries so
meson removes everything else. With Nix, the locations of libraries
are not as predictable, therefore we need to keep them in the RPATH. [1]

Previously we have just kept the RPATH produced by the linker, patching
meson not to remove it. This deprived us of potentially replacing it
with install_rpath provided by project so we had to re-add it manually,
and also introduced a vulnerability of keeping build paths in RPATH.

This commit restores the clean-up but modifies it so the items starting
with /nix/store are retained.

This should be relatively safe since the store is immutable, however,
there might be some unwanted retainment of build_rpath [2] if it contains
paths from Nix store.

[1]: https://github.com/NixOS/nixpkgs/issues/31222#issuecomment-365811634
[2]: http://mesonbuild.com/Release-notes-for-0-42-0.html#added-build_rpath-keyword-argument
2018-03-22 07:30:58 +01:00
Matthew Justin Bauer
e2e3b35e10
Merge pull request #37238 from matthewbauer/auto-update/ant
ant: 1.9.6 -> 1.10.2
2018-03-21 23:41:52 -05:00
Austin Seipp
df861685cb icestorm: 2018.03.07 -> 2018.03.21
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-03-21 16:05:10 -05:00
Maximilian Bosch
9f6d1ac711 node-webkit/nw9.nix: remove
Obsolete since #37380 and severly outdated (#37361)

/cc @Profpatsch
2018-03-21 15:42:23 +01:00
Michael Raskin
06f4916393
Merge pull request #37505 from ryantm/auto-update/luarocks
lua51Packages.luarocks: 2.4.3 -> 2.4.4
2018-03-21 07:36:40 +00:00
Ryan Mulligan
1a4b6a6d41 lua51Packages.luarocks: 2.4.3 -> 2.4.4
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks --help` got 0 exit code
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks help` got 0 exit code
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks --version` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks --help` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks help` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-5.1 --help` got 0 exit code
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-5.1 help` got 0 exit code
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-5.1 --version` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-5.1 --help` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-5.1 help` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin --help` got 0 exit code
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin help` got 0 exit code
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin --version` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin --help` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin help` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin-5.1 --help` got 0 exit code
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin-5.1 help` got 0 exit code
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin-5.1 --version` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin-5.1 --help` and found version 2.4.4
- ran `/nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4/bin/luarocks-admin-5.1 help` and found version 2.4.4
- found 2.4.4 with grep in /nix/store/az3lanws83s5q26z1s03rx6z6yxphjbq-luarocks-2.4.4
- directory tree listing: https://gist.github.com/cb3889fda28e8066faebd32a433c69d2
2018-03-20 16:38:20 -07:00
Jörg Thalheim
1c810f5f83
Merge pull request #37346 from flokli/sqldeveloper
sqldeveloper: 17.4.0.355.2349 -> 17.4.1.054.0712
2018-03-20 21:58:14 +00:00
Daiderd Jordan
e616725ba0
imatix_gsl: fix clang build
/cc ZHF #36454
2018-03-19 23:41:49 +01:00
Matthew Justin Bauer
a008505c65
Merge pull request #36854 from selaux/chromedriver-2.36
chromedriver: 2.35 -> 2.36
2018-03-19 13:04:12 -05:00
Matthew Justin Bauer
ce456559d7
Merge pull request #36429 from frankbo/update-sauce-connect-to-4-4-12
sauce-connect: 4.4.8 -> 4.4.12
2018-03-19 12:35:36 -05:00
Matthew Justin Bauer
3fc0a2bb10
Merge pull request #36639 from ryantm/auto-update/opengrok
opengrok: 0.12.5 -> 1.0
2018-03-19 12:30:06 -05:00
Matthew Justin Bauer
4f338db600
Merge pull request #36681 from ryantm/auto-update/redo-sh
redo-sh: 1.2.6 -> 2.0.3
2018-03-19 12:28:03 -05:00
James Kay
9508150198
godot: don't require gcc5 2018-03-19 14:51:36 +00:00
James Kay
368ed89aa0
godot: simplify pkg_config_additions.patch 2018-03-19 14:51:18 +00:00
James Kay
2220b5fe99
godot: update patches for 3.0.2 2018-03-19 11:59:55 +00:00
Jörg Thalheim
86dd3f854b
Merge pull request #35687 from volth/libvirt-4.1.0
libvirt: 3.10.0 -> 4.1.0
2018-03-19 11:42:06 +00:00
Matthew Bauer
4cc1cd8516 cmake-2.8: supports darwin
builds fine, just need to enable to
2018-03-19 05:42:15 -05:00
Profpatsch
5e0cf582c1 node_webkit/nwjs: 0.12 -> 0.23.6
Keep 0.12, because it is still needed by `nixui`.
Keep 0.9, because it is still needed by `zed`.
2018-03-19 08:47:08 +01:00
Florian Klink
f9dda86b39 sqldeveloper: 17.4.0.355.2349 -> 17.4.1.054.0712 2018-03-18 23:29:28 +01:00
Daiderd Jordan
4e1ab9d44c
guile-lint: disable tests on darwin 2018-03-18 22:27:13 +01:00
Pascal Wittmann
a4752e1132
icmake: 9.02.06 -> 9.02.07 2018-03-18 20:44:29 +01:00
James ‘Twey’ Kay
4708b4e03b godot: fix stupid typo 2018-03-18 15:57:57 +00:00
Gabriel Ebner
8ba914a224
Merge pull request #35542 from volth/patch-108
cfr: 0_101 -> 0_125
2018-03-18 15:43:21 +01:00
Jörg Thalheim
da3447644c
Merge pull request #37223 from ryantm/auto-update/mkdocs
mkdocs: 0.17.2 -> 0.17.3
2018-03-18 10:55:15 +00:00
lewo
1e756b7022
Merge pull request #36801 from vdemeester/update-doctl-172
doctl: 1.5.0 -> 1.7.2
2018-03-18 09:22:39 +01:00
Peter Hoeg
453a60ed95
Merge pull request #37243 from ryantm/auto-update/usb-modeswitch-data
usb-modeswitch-data: 20170205 -> 20170806
2018-03-18 12:19:56 +08:00
Gabriel Ebner
e70d3f0a35
Merge pull request #37106 from ryantm/auto-update/sassc
sassc: 3.4.8 -> 3.5.0
2018-03-17 13:42:39 +01:00
Gabriel Ebner
82c5beeccb
Merge pull request #37237 from matthewbauer/auto-update/antlr4
antlr4: 4.7 -> 4.7.1
2018-03-17 13:29:55 +01:00
Ryan Mulligan
1744ff99fb usb-modeswitch-data: 20170205 -> 20170806
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- directory tree listing: https://gist.github.com/8dc0e83055ce231aba53f5bb82ed0f59
2018-03-17 05:21:34 -07:00
Matthew Bauer
7e59fd5b84 antlr4: 4.7 -> 4.7.1
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
- built on NixOS
- ran `/nix/store/i4ipx4vd247inysxw0ygp7smcfx5yf05-antlr-4.7.1/bin/grun -h` got 0 exit code
- ran `/nix/store/i4ipx4vd247inysxw0ygp7smcfx5yf05-antlr-4.7.1/bin/grun --help` got 0 exit code
- ran `/nix/store/i4ipx4vd247inysxw0ygp7smcfx5yf05-antlr-4.7.1/bin/grun help` got 0 exit code
- found 4.7.1 with grep in /nix/store/i4ipx4vd247inysxw0ygp7smcfx5yf05-antlr-4.7.1
2018-03-17 03:53:53 -05:00
Matthew Bauer
26398c030b ant: 1.9.6 -> 1.10.2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.10.2 with grep in /nix/store/ymhiik4c7604dxzlnvrrzj88d2lkcy16-ant-1.10.2
2018-03-17 03:53:31 -05:00
Ryan Mulligan
27faba541f mkdocs: 0.17.2 -> 0.17.3
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3/bin/.mkdocs-wrapped -h` got 0 exit code
- ran `/nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3/bin/.mkdocs-wrapped --help` got 0 exit code
- ran `/nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3/bin/.mkdocs-wrapped -V` and found version 0.17.3
- ran `/nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3/bin/.mkdocs-wrapped --version` and found version 0.17.3
- ran `/nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3/bin/mkdocs -h` got 0 exit code
- ran `/nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3/bin/mkdocs --help` got 0 exit code
- ran `/nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3/bin/mkdocs -V` and found version 0.17.3
- ran `/nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3/bin/mkdocs --version` and found version 0.17.3
- found 0.17.3 with grep in /nix/store/wy5434b824p55fr8x67vz8q8ph9g65kn-mkdocs-0.17.3
- directory tree listing: https://gist.github.com/b9a97908c199575f84016b19365ae126
2018-03-16 23:48:23 -07:00
James Kay
5fbbd5e02b
godot: 3.0 -> 3.0.2 2018-03-16 19:54:32 +00:00
James Kay
998f42aa48
godot: restrict build platforms to [ "i686-linux" "x86_64-linux" ] 2018-03-16 19:46:54 +00:00
James Kay
7ba969f87e
godot: stop build process from looking in global directories 2018-03-16 19:46:53 +00:00
James Kay
ef5fd1cf27
godot: clean up output path 2018-03-16 19:46:33 +00:00
James Kay
ef7a25fcc0
godot: 2.1.4 -> 3.0 2018-03-16 19:46:33 +00:00
Peter Simons
1c0126a26d multi-ghc-travis: update to latest version
And jailbreak to support building in an lts-11.x package set.
2018-03-16 17:29:53 +01:00
Peter Simons
041b27bfb3 fsatrace: initial version 2018-03-16 14:01:31 +01:00
Tuomas Tynkkynen
ef64208eba Merge commit '3ab2949' from staging into master
Conflicts:
	pkgs/development/compilers/llvm/6/llvm.nix
	pkgs/servers/home-assistant/component-packages.nix
2018-03-15 22:30:56 +02:00
Pascal Wittmann
b269a687c0
Merge pull request #37024 from ryantm/auto-update/intel-gpu-tools
intel-gpu-tools: 1.21 -> 1.22
2018-03-15 18:49:37 +01:00
Ryan Mulligan
4b43f9e588 sassc: 3.4.8 -> 3.5.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/jw8q07zqpmpzny6qz3zx2slxjng7lf9i-sassc-3.5.0/bin/sassc -h` got 0 exit code
- ran `/nix/store/jw8q07zqpmpzny6qz3zx2slxjng7lf9i-sassc-3.5.0/bin/sassc --help` got 0 exit code
- ran `/nix/store/jw8q07zqpmpzny6qz3zx2slxjng7lf9i-sassc-3.5.0/bin/sassc -v` and found version 3.5.0
- ran `/nix/store/jw8q07zqpmpzny6qz3zx2slxjng7lf9i-sassc-3.5.0/bin/sassc --version` and found version 3.5.0
- ran `/nix/store/jw8q07zqpmpzny6qz3zx2slxjng7lf9i-sassc-3.5.0/bin/sassc -h` and found version 3.5.0
- ran `/nix/store/jw8q07zqpmpzny6qz3zx2slxjng7lf9i-sassc-3.5.0/bin/sassc --help` and found version 3.5.0
- found 3.5.0 with grep in /nix/store/jw8q07zqpmpzny6qz3zx2slxjng7lf9i-sassc-3.5.0
- found 3.5.0 in filename of file in /nix/store/jw8q07zqpmpzny6qz3zx2slxjng7lf9i-sassc-3.5.0
2018-03-15 06:20:43 -07:00
Timo Kaufmann
488835ec6e conan: Locally pin deps, enable tests 2018-03-15 13:48:58 +01:00
Ryan Mulligan
7b1f515b89 pmd: 6.0.1 -> 6.1.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 6.1.0 with grep in /nix/store/qh8xnf46qfyijvskdznwl08r6js4wg7y-pmd-6.1.0
- found 6.1.0 in filename of file in /nix/store/qh8xnf46qfyijvskdznwl08r6js4wg7y-pmd-6.1.0
2018-03-15 01:33:47 -07:00
John Ericson
2e87550ace
Merge pull request #36985 from obsidiansystems/no-allBut
treewide: get rid of platforms.allBut
2018-03-14 18:57:28 -04:00
John Ericson
f79f80dbf2 treewide: get rid of platforms.allBut
Negative reasoning like `allBut` is a bad idea with an open world of
platforms. Concretely, if we add a new, quite different sort of
platform, existing packages with `allBut` will claim they work on it
even though they probably won't.
2018-03-14 18:44:42 -04:00
Will Dietz
d1812a8761
Merge pull request #37014 from dtzWill/update/wllvm-1.1.5
wllvm: 1.1.3 -> 1.1.5
2018-03-14 16:41:12 -05:00
Joachim F
bfb4e0822a
Merge pull request #36482 from matthewbauer/json2hcl
json2hcl: init at 0.0.6
2018-03-14 20:51:12 +00:00
Ryan Mulligan
e140014a52 intel-gpu-tools: 1.21 -> 1.22
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/igt_stats -h` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/igt_stats --help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/igt_stats help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_reg --help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_reg help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_forcewaked -h` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_firmware_decode help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_gpu_top -h` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_gpu_top -h` and found version 1.22
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_guc_logger -h` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_guc_logger --help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_opregion_decode -h` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_opregion_decode --help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_dump_decode help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_error_decode help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_dp_compliance -h` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_dp_compliance --help` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_dp_compliance -h` and found version 1.22
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_dp_compliance --help` and found version 1.22
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_aubdump -h` got 0 exit code
- ran `/nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22/bin/intel_aubdump --help` got 0 exit code
- found 1.22 with grep in /nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22
- found 1.22 in filename of file in /nix/store/xk5lsqw4vfa5ndqvsg23w6jblxx0js78-intel-gpu-tools-1.22
2018-03-14 13:39:01 -07:00
Matthew Bauer
ba4356f585 json2hcl: fix meta 2018-03-14 15:31:40 -05:00
Will Dietz
66a0aaddbb
Merge pull request #37016 from dtzWill/feature/gllvm
gllvm: init at 2018-02-09
2018-03-14 15:01:29 -05:00
Will Dietz
43c474457c gllvm: init at 2018-02-09 2018-03-14 14:50:17 -05:00
Joachim F
95e28a6c39
Merge pull request #36509 from ryantm/auto-update/doit
doit: 0.30.3 -> 0.31.0
2018-03-14 19:48:20 +00:00
Joachim F
161395c07c
Merge pull request #36499 from ryantm/auto-update/chromedriver
chromedriver: 2.35 -> 2.36
2018-03-14 19:41:57 +00:00
Joachim F
6de4671297
Merge pull request #36430 from ryantm/auto-update/apktool
apktool: 2.3.0 -> 2.3.1
2018-03-14 19:30:37 +00:00
Will Dietz
2184aac78c wllvm: 1.1.3 -> 1.1.5 2018-03-14 14:29:10 -05:00
Tuomas Tynkkynen
2fec9c6e29 Merge remote-tracking branch 'upstream/master' into staging
Conflicts:
	pkgs/development/tools/build-managers/conan/default.nix
2018-03-13 23:04:18 +02:00
Franz Pletz
4b72196874
Merge pull request #36806 from timokau/conan-fix
conan: Fix build
2018-03-13 13:16:21 +00:00
Timo Kaufmann
5fdfe61b35 conan: Fix build
conan has very strict requirements on the versions of its dependencies.
This patch adds downgraded versinos of node-semver and distro to
statisfy these requirements.
2018-03-13 11:36:45 +01:00
pukkamustard
1993ebf0c7
flyway: refactor supported platforms
Other Unix platforms are supported (not only Linux).
2018-03-12 18:46:35 +01:00
John Children
79f4548aa2 go-langserver: init at unstable-2018-03-05 2018-03-12 14:52:13 +00:00
Jörg Thalheim
bbf69b7301 travis: add update instructions (#36855) 2018-03-12 10:47:16 +00:00
Stefan Lau
3bff46e352 chromedriver: 2.35 -> 2.36 2018-03-12 10:48:19 +01:00
Graham Christensen
1bfe2511ca
Merge pull request #36805 from vdemeester/update-gauge-097
gauge: 0.9.6 -> 0.9.7
2018-03-11 21:56:58 -04:00
Michael Raskin
ec2981ae3d fmbt: init at 0.39 2018-03-11 15:44:48 +01:00
Vincent Demeester
35b7632bdb
gauge: 0.9.6 -> 0.9.7
Also removes the unecessary binary from the package

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-03-11 15:22:06 +01:00
Vincent Demeester
2394753282
doctl: 1.5.0 -> 1.7.2
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-03-11 15:08:47 +01:00
Jan Malakhovski
7079e744d4 Merge branch 'master' into staging
Resolved the following conflicts (by carefully applying patches from the both
branches since the fork point):

   pkgs/development/libraries/epoxy/default.nix
   pkgs/development/libraries/gtk+/3.x.nix
   pkgs/development/python-modules/asgiref/default.nix
   pkgs/development/python-modules/daphne/default.nix
   pkgs/os-specific/linux/systemd/default.nix
2018-03-10 20:38:13 +00:00
xeji
b3d2a87b53 gtk-doc: add missing runtime dependency on six 2018-03-10 13:17:39 +01:00
xeji
4eec6bc9c9 gtk-doc: add missing runtime dependency on six 2018-03-10 13:02:10 +01:00
Frederik Rietdijk
865b21548f Revert "Merge pull request #36743 from xeji/gtkdoc"
This reverts commit bb38918fda8f42c7e0112aca156f0da5dd7a13ad, reversing
changes made to 83ee88e70fee515f436d5fa248a15a3b166be7d3.

This change should go to staging instead.
2018-03-10 13:01:01 +01:00
xeji
6fb73cc799 gtk-doc: add missing runtime dependency on six 2018-03-10 11:39:11 +01:00
Graham Christensen
6a7dcafa5c
Merge pull request #36698 from veprbl/include-what-you-use_darwin
include-what-you-use: enable on darwin
2018-03-09 17:13:07 -05:00