Frederik Rietdijk
dd054e890f
Merge pull request #22061 from Mic92/python3-protobuf
...
python-protobuf: enable python3 and enable py3 tests
2017-02-20 21:17:38 +01:00
Vincent Laporte
b634622be0
compcert: 2.7.1 -> 3.0.1
2017-02-20 20:09:53 +00:00
Vladimír Čunát
0ff2179e0f
gnutls: use 3.5 and remove 3.4
...
3.4 branch detects support for getrandom() call during configure-time,
which gets picked up since glibc-2.25, and consequently it will fail
with older kernels during rutime.
2017-02-20 21:07:35 +01:00
Alexey Shmalko
f0f75433fb
pythonPackages.evdev: 0.4.7 -> 0.6.4
...
pythonPackages.evdev did not work due to
https://github.com/gvalkov/python-evdev/issues/43 .
2017-02-20 19:35:33 +02:00
Nikolay Amiantov
ac8fabd0e0
phpPackages: also default to 7.1
2017-02-20 19:08:12 +03:00
Thomas Tuegel
7fa06b3cd2
Merge pull request #22991 from layus/deprecate-kde4-ktikz
...
qtikz: update to Qt5; remove ktikz
2017-02-20 08:37:47 -06:00
Peter Simons
d7f10f2828
python-osc: enable (install) bash completion
2017-02-20 15:02:30 +01:00
Tuomas Tynkkynen
fee43308ed
platforms.nix: Remove unnecessary kernelExtraConfig for ARMv7
...
AHCI_IMX is already enabled in multi_v7_defconfig since kernel 4.9.
2017-02-20 15:22:14 +02:00
Nikolay Amiantov
ec2c9d57b5
Merge pull request #22568 from abbradar/chromium-updates
...
Chromium updates
2017-02-20 15:49:04 +03:00
Shea Levy
f454297a7d
linux 4.10
2017-02-20 07:32:46 -05:00
Shea Levy
b191ac0d89
Revert "linux 4.10"
...
Somehow the tarball was actually linux 4.4.10
This reverts commit fea71f84d0
.
2017-02-20 07:29:47 -05:00
Robin Gloster
dcba6eae1b
Merge pull request #22116 from LnL7/darwin-cmus
...
cmus: fix darwin
2017-02-20 13:02:30 +01:00
Shea Levy
fea71f84d0
linux 4.10
2017-02-20 06:47:49 -05:00
Peter Simons
31759274f1
python-suseapi: 'requests' isn't needed at build-time, but it's needed at run-time
2017-02-20 12:21:59 +01:00
Peter Simons
f0de1dc89d
python-suseapi: add package at version 0.24-5-g9937e3b
2017-02-20 12:11:29 +01:00
Frederik Rietdijk
9d48d3774e
Merge pull request #22713 from richardlarocque/antfs-cli
...
antfs-cli and openant: init at unstable-2017-02-11
2017-02-20 09:06:02 +01:00
Richard Larocque
13884d6de1
antfs-cli: init at unstable-2017-02-11
2017-02-19 16:22:21 -08:00
Richard Larocque
59d2eeff84
openant: init at unstable-2017-02-11
2017-02-19 16:22:20 -08:00
aszlig
7c9f4ee032
lua-packages/luasocket: Fix wrong platforms value
...
This has surfaced due to 505d7bea3a
and
the fixup commit 77f5a50c40
.
The individial platform attributes are a list rather than single
elements, so in this case we got:
with platforms; [darwin linux freebsd illumos]
Which results in:
[ ["x86_64-darwin"]
["i686-linux" "x86_64-linux" "armv5tel-linux" "armv6l-linux"
"armv7l-linux" "aarch64-linux" "mips64el-linux"]
["i686-freebsd" "x86_64-freebsd"]
["x86_64-solaris"]
]
So if you don't have allowBroken set in nixpkgs config, you end up with
an evaluation error because meta.platforms is expected to be a list
instead of a list of lists which we got here.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @mornfall, @vcunat
2017-02-20 00:05:18 +01:00
Michael Raskin
9d81664480
psi: move out of kdePackages, it doesn't use kdelibs anyway
2017-02-19 18:38:10 +01:00
Michael Raskin
5759206608
qca2: add qca2-qt5 top-level attribute
2017-02-19 18:38:10 +01:00
Vladimír Čunát
77f5a50c40
lua-packages: fix my mass typo in meta
2017-02-19 17:56:49 +01:00
Vladimír Čunát
505d7bea3a
lua-packages: hydraPlatforms -> platforms
...
I see no original reason. It seems someone started using hydraPlatforms
in that file and everyone else was just conforming to the style.
2017-02-19 17:40:18 +01:00
Vladimír Čunát
ac7ed3b91f
Merge #22974 : luaPackages.luaposix: init at 33.4.0
2017-02-19 17:38:52 +01:00
Jörg Thalheim
19798cb205
Merge pull request #22819 from makefu/pkgs/dymo/init
...
cups-dymo: init at 1.4.0.5
2017-02-19 16:53:19 +01:00
vbgl
d31577cfd3
Merge pull request #22871 from FlorentBecker/default_ocaml_402
...
Default ocaml 402
2017-02-19 15:54:54 +01:00
Tuomas Tynkkynen
b53c53b1b4
maintainers: Add script to patch version/sha256 in .nix files
...
Adds a script to help automatically upgrading packages: this one can
patch name/version attributes like:
version = "50.1.0";
name = "bc-1.06";
... to the given version, and updates the sha256 hash to match.
Usage is:
update-source-version <attr> <new-version> [<new-source-hash>]
where:
- attr is the attribute path of the package
- new-version is the version string to be patched in
- new-source-hash is the optional sha256/etc. hash of the source.
If not given, the script will automatically calculate it.
This is added to a subdirectory where other useful scripts can be added
in the future, like figuring out the newest version from a git repo or
GitHub releases etc.
2017-02-19 16:51:17 +02:00
Lancelot SIX
f149a32315
Merge pull request #22957 from asymmetric/glances-2.8.2
...
glances: 2.7.1_1 -> 2.8.2
Built and tested locally.
2017-02-19 15:08:53 +01:00
Florent Becker
4c5f083d70
prooftree: move out of ocamlPackages
2017-02-19 13:06:25 +01:00
Florent Becker
6893d8a2fd
llpp: move out of ocamlPackages
2017-02-19 13:06:25 +01:00
Florent Becker
88dac94e3b
switch ocamlPackages to 4.02
2017-02-19 13:06:24 +01:00
Florent Becker
f18ac15dca
ocamlPackages.spacetime: only build with ocaml-4.04
2017-02-19 13:06:24 +01:00
Florent Becker
cc9a50ec03
virt-top: compile with ocaml 4.01
2017-02-19 13:06:24 +01:00
Florent Becker
bf13a2cfc6
ocamlPackages.camlimages_4_0: only build with ocaml 4.01
2017-02-19 13:05:47 +01:00
Florent Becker
2a17b75fb1
ocamlPackages.bitsring: associate ocaml versions with bitstring versions univocally
2017-02-19 13:05:47 +01:00
Florent Becker
ba993ad506
coccinelle: build with caml 4.01
2017-02-19 13:05:46 +01:00
Florent Becker
2f46fb2cba
sks: fix build with ocaml 4.02+
2017-02-19 13:05:46 +01:00
Florent Becker
b0d7d60fd4
prooftree: force ocaml 4.01
2017-02-19 13:05:46 +01:00
Florent Becker
ea68576b7a
satallax: force ocaml 4.01
2017-02-19 13:05:45 +01:00
Florent Becker
ad671eaba9
mldonkey: force ocaml 4.01
2017-02-19 13:05:45 +01:00
Florent Becker
11e4fcf941
ocamlPackages.llpp: only allow with ocaml-4.04
2017-02-19 13:05:44 +01:00
Florent Becker
eec3973004
leo2: force ocaml-4.01
2017-02-19 13:05:44 +01:00
Guillaume Maudoux
9016be4589
qtikz: update to Qt5; remove ktikz
2017-02-19 12:26:51 +01:00
sternenseemann
a452714799
ocaml-cow: init at 2.2.0
2017-02-19 11:16:25 +00:00
Vincent Laporte
d2a4a84f00
ocamlPackages.uri: 1.9.1 -> 1.9.2
...
The old version is also kept, under the attribute `uri_p4`.
It is built against `sexplib` version prior to 113.33 and needed by `trv`.
2017-02-19 11:57:24 +01:00
Joachim F
184f574283
Merge pull request #22915 from pradeepchhetri/envconsul
...
envconsul: init at 0.6.2
2017-02-19 10:23:58 +01:00
Nikolay Amiantov
b322271dd6
pythonPackages.webassets: 0.12 -> 0.12.1
...
Fixes #22965
2017-02-19 11:35:59 +03:00
sternenseemann
4f0feb4f5f
ocaml-logs: init at 0.6.2
2017-02-19 04:36:14 +00:00
Pradeep Chhetri
1973a29536
envconsul: init at 0.6.2
2017-02-19 09:36:39 +05:30
rushmorem
87cf2231fa
intecture-agent: init at 0.3.0
2017-02-19 03:49:33 +02:00
Rushmore Mushambi
0982d9b00f
Merge pull request #22979 from rushmorem/intecture
...
intecture-auth: init at 0.1.0
2017-02-19 03:28:37 +02:00
rushmorem
31d4b7b830
intecture-auth: init at 0.1.0
2017-02-19 03:20:37 +02:00
sternenseemann
d738ac4fd5
ocaml-angstrom: init at 0.3.0
2017-02-19 02:12:52 +01:00
Rushmore Mushambi
de4a17409f
Merge pull request #22972 from rushmorem/incli
...
intecture-cli: init at 0.3.2
2017-02-19 02:45:36 +02:00
rushmorem
af6c722a7b
intecture-cli: init at 0.3.2
2017-02-19 02:35:47 +02:00
Renato Alves
523444db38
luaPackages.luaposix: init at 33.4.0
2017-02-19 01:09:51 +01:00
Tim Steinbach
2423313581
kernel: 4.9.10 -> 4.9.11
2017-02-18 18:33:36 -05:00
rushmorem
39aac045f6
rustPackages: update to latest
2017-02-19 00:50:05 +02:00
Rushmore Mushambi
23e2824d0f
Merge pull request #22955 from rushmorem/czmq-update
...
czmq: v3.0.2 -> v4.0.2
2017-02-19 00:01:35 +02:00
rushmorem
3f09f8fa4d
czmq: v3.0.2 -> v4.0.2
2017-02-18 23:54:50 +02:00
ikervagyok
0860565ee0
btrfs-dedupe: init at 1.1.0 ( #22938 )
2017-02-18 22:20:42 +01:00
Lorenzo Manacorda
fccea07869
glances: 2.7.1_1 -> 2.8.2
2017-02-18 20:27:23 +01:00
Ricardo M. Correia
fca09185d0
pycurl: 7.19.5 -> 7.19.5.1
...
Fixes import error when curl was built with LibreSSL.
2017-02-18 20:09:04 +01:00
Cray Elliott
5e0b978eff
mwprocapture: init at 1.2.3269 ( #22160 )
2017-02-18 15:44:31 +01:00
Rahul Gopinath
7901a7a65f
dgsh-unstable: Init at 2017-02-05 ( #22657 )
...
Dgsh is the directed graph shell
2017-02-18 14:25:49 +01:00
Frederik Rietdijk
8a6fa4a320
Merge pull request #22244 from AndersonTorres/intercal
...
Intercal: a little fix
2017-02-18 14:10:44 +01:00
Rene Treffer
5236e23502
prometheus-bind-exporter: init at 20161221
...
prometheus-bind-exporter: init at 20161221
2017-02-18 13:43:59 +01:00
AndersonTorres
9d82b3ebeb
Intercal: a little fix
...
Intercal doesn't build with the most recent version of flex -
it complains with an "undefined reference to `yywrap'"
in the link phase.
So, we need to downgrade flex.
2017-02-18 10:05:02 -02:00
Vladimír Čunát
432dba859e
Merge branch 'staging'
...
A security update of libxml2 is within.
2017-02-18 08:59:29 +01:00
Graham Christensen
c4bbadf2d5
tomcat6: more thoroughly remove tomcat6
2017-02-17 22:25:52 -05:00
Thomas Tuegel
a8b49802db
Merge pull request #22902 from ttuegel/kde5-instructions
...
KDE 5 packaging instructions
2017-02-17 21:09:31 -06:00
Joachim Fasting
e8007c0e89
linux_4_9: patch for CVE-2017-5986
...
Seems fairly low impact[1] but we might as well patch it until a new 4.9
version is released
[1]: https://bugzilla.redhat.com/show_bug.cgi?id=1420276
2017-02-17 19:11:30 +01:00
Thomas Tuegel
b510dccc94
kde5.applications: update instructions
2017-02-17 11:48:14 -06:00
Bjørn Forsman
73112a6e78
pcsctools: unbreak 'gscriptor' by adding cairo
...
Fixes this:
$ gscriptor
Can't load '/nix/store/17w6hdwbli924v7d43xxxp66qhgqpc24-perl-Pango-1.227/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/auto/Pango/Pango.so' for module Pango: /nix/store/17w6hdwbli924v7d43xxxp66qhgqpc24-perl-Pango-1.227/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/auto/Pango/Pango.so: undefined symbol: cairo_font_type_to_sv at /nix/store/5z1wn7knhckr3a0asb8lzp99sdai09f2-perl-5.22.2/lib/perl5/5.22.2/x86_64-linux-thread-multi/DynaLoader.pm line 193.
at /nix/store/srdac7af3nz6fb74haa8l8ls9wd9pas0-perl-Gtk2-1.2498/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/Gtk2.pm line 31.
Compilation failed in require at /nix/store/srdac7af3nz6fb74haa8l8ls9wd9pas0-perl-Gtk2-1.2498/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/Gtk2.pm line 31.
BEGIN failed--compilation aborted at /nix/store/srdac7af3nz6fb74haa8l8ls9wd9pas0-perl-Gtk2-1.2498/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/Gtk2.pm line 31.
Compilation failed in require at /nix/store/sgy2xsyvmam09pl25x8gb507gyiz9ybn-pcsc-tools-1.4.25/bin/.gscriptor-wrapped line 28.
BEGIN failed--compilation aborted at /nix/store/sgy2xsyvmam09pl25x8gb507gyiz9ybn-pcsc-tools-1.4.25/bin/.gscriptor-wrapped line 28.
2017-02-17 17:01:29 +01:00
Joachim F
fe4552420e
Merge pull request #22680 from dtzWill/feature/creduce
...
creduce: init at 2.6.0
2017-02-17 16:58:37 +01:00
Philipp Gesang
b4e9bcfc12
afio: init at 2.5.1
...
Signed-off-by: Philipp Gesang <phg@phi-gamma.net>
2017-02-17 15:29:03 +01:00
Orivej Desh
47ded42788
lumail: init at 2.9
2017-02-17 12:14:20 +01:00
Orivej Desh
cc4fd4f715
perl-Net-IMAP-Client: init at 0.9505
2017-02-17 12:14:20 +01:00
Nikolay Amiantov
8ecd5c4019
Merge pull request #22864 from abbradar/dbus-etc
...
Redo DBus configuration
2017-02-17 11:47:51 +03:00
Daiderd Jordan
8a5c6153d7
Merge pull request #22814 from veprbl/wxpython
...
wxPython30: fix on darwin
2017-02-17 08:35:39 +01:00
Robin Gloster
b3c58dc38b
Merge pull request #22222 from afldcr/polybar-3.0.3
...
polybar: init at 3.0.4
2017-02-17 02:49:44 +01:00
Brian McKenna
17f566d1e1
keybase-gui: init at 20170209.17b641d
...
The GUI requires the keybase and kbfs packages to be installed and
running with /keybase as the mount.
2017-02-17 02:44:06 +01:00
Mogria
cfea446920
phpPackages.memcached: add missing zlib build dependency
2017-02-17 02:18:58 +01:00
David Terry
90d225db76
microsoft_gsl: init at 2017-02-13
2017-02-17 02:14:12 +01:00
Pradeep Chhetri
6515854248
awless: init at 0.0.13
2017-02-17 02:12:23 +01:00
Dmitry Kalinkin
0a44f259b5
python27Packages.taskcoach: mark as broken on darwin
2017-02-16 18:48:09 -05:00
Robin Gloster
101d90d18b
libzrtpcpp: remove
2017-02-17 00:14:15 +01:00
Robin Gloster
d7e5883d5e
freeswitch: 1.6.9 -> 1.6.15
2017-02-17 00:14:13 +01:00
Robin Gloster
4324ff2f73
sflphone: remove
2017-02-17 00:14:10 +01:00
Robin Gloster
538aed6dea
twinkle: remove
2017-02-17 00:14:07 +01:00
Robin Gloster
d9d66375ec
pythonPackages.boto3: 1.4.2 -> 1.4.4
2017-02-17 00:13:49 +01:00
Robin Gloster
0abc829590
pythonPackages.pyopenssl: 16.1.0 -> 16.2.0
2017-02-17 00:13:42 +01:00
Robin Gloster
38ef3bbc08
perlPackages.CryptOpenSSLRandom: 0.10 -> 0.11
2017-02-17 00:13:27 +01:00
Robin Gloster
b1d24a0472
libressl: default to 2.4 due to recent breakages
2017-02-17 00:13:21 +01:00
Vladimír Čunát
03024b39b7
tex4ht: fixup evaluation errors in the broken package
...
https://github.com/NixOS/nixpkgs/pull/22873#issuecomment-280390590
2017-02-16 20:24:56 +01:00
Vladimír Čunát
e962a3c95f
Merge branch 'master' into staging
2017-02-16 19:02:37 +01:00
Frederik Rietdijk
624cd8ae9e
Merge pull request #22593 from teh/master
...
Update scrapy & dependencies
2017-02-16 17:27:57 +01:00
Tom Hunger
69363e9611
Move scrapy to its own module and add patch to fix broken permission code.
...
Scrapy is usually installed via pip where copying all permissions
makes sense. In Nix the files copied are owned by root and
readonly. As a consequence scrapy can't edit the project templates so
scrapy startproject
fails.
2017-02-16 16:21:46 +00:00
Graham Christensen
073ca2b34f
aspcu: 1.9.0 -> 1.9.1
2017-02-16 07:55:25 -05:00
Graham Christensen
52026edf98
Merge pull request #22839 from ilya-kolpakov/master
...
boost: 1.63.0 (not default)
2017-02-16 07:42:40 -05:00