Commit graph

34706 commits

Author SHA1 Message Date
Peter Simons a2018cedf5 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.0.4-8-g0d49e12 from Hackage revision
beea499740.
2017-01-30 11:49:09 +01:00
Peter Simons 522ab7efef LTS Haskell 7.18 2017-01-30 11:48:52 +01:00
Eelco Dolstra 35349b6c2a
gup: 0.5.5 -> 0.6.0 2017-01-30 11:44:15 +01:00
Eelco Dolstra 12dd086c39
Revert "gup: 0.5.5 -> 0.6.0 and derivation update"
This reverts commit a59c3038cd due to
use of importJSON.
2017-01-30 11:44:15 +01:00
Eelco Dolstra c20cc6d0b3
Excise use of importJSON
Putting information in external JSON files is IMHO not an improvement
over the idiomatic style of Nix expressions. The use of JSON doesn't
add anything over Nix expressions (in fact it removes expressive
power). And scattering package info over lots of little files makes
packages less readable over having the info in one file.
2017-01-30 11:44:08 +01:00
Peter Hoeg d1b8b0dd52 bundler: 1.13.7 -> 1.14.3 (#22260) 2017-01-29 22:42:17 +00:00
Niklas Thörne 2eb8163fae bashdb: init at 4.4-0.92 (#22275) 2017-01-29 23:05:04 +01:00
Peter Simons 456b9f849d Merge pull request #22219 from Hodapp87/master
RStudio: Optionally allow packages from custom R environment
2017-01-29 21:13:58 +01:00
Peter Simons c1c0cf3de7 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.0.4-8-g0d49e12 from Hackage revision
4be631c833.
2017-01-29 20:20:29 +01:00
Peter Simons 3f774f6c51 hackage2nix: enable hydra builds for brick 2017-01-29 20:19:44 +01:00
Michael Raskin 71fa504cf9 Merge pull request #22217 from adnelson/lsof_darwin_fix
lsof: replace impure reference to /usr/include files
2017-01-29 17:32:55 +00:00
Tuomas Tynkkynen fee66e9463 speexdsp: Fix build on aarch64 2017-01-29 02:08:04 +02:00
Tuomas Tynkkynen c6ce08422a libvpx: Remove unneeded assert
It fails on aarch64.
2017-01-29 02:08:04 +02:00
Tuomas Tynkkynen ef089634bf mesa: Enable some ARM drivers
And disable freedreno from others since it's not useful there.
2017-01-29 02:08:04 +02:00
Tuomas Tynkkynen 137bf7269e libdrm: Enable some ARM drivers
I dropped --enable-freedreno since it's automatically enabled on ARM and
shouldn't be needed anywhere else.
2017-01-29 02:08:04 +02:00
Tuomas Tynkkynen 4d059f6f27 spidermonkey_17: Add one more patch for Aarch64 2017-01-29 01:34:02 +02:00
Lluís Batlle i Rossell 8d5b2e66bd Updating shotcut to 17.01 and fixing its jobs 2017-01-28 20:12:51 +01:00
Lluís Batlle i Rossell 20465bedee Updating shotcut and melt. 2017-01-28 20:12:51 +01:00
Vincent Laporte 23894b77a7 ocamlPackages.dolmen: init at 0.2
dolmen is an OCaml library providing clean and flexible parsers for input languages

Homepage: https://github.com/Gbury/dolmen
2017-01-28 17:40:48 +00:00
Yacine Hmito 61e4313bf1 rustNightlyBin: 2016-12-29 -> 2017-01-26 (#22228)
thanks!
2017-01-28 18:27:41 +01:00
Kevin Cox c09690b354
Revert "libmsgpack_1_4: remove"
This reverts commit ff89e81898.

There are references to this variable.
2017-01-28 11:14:31 +00:00
Domen Kožar fa18c37c71
haskellPackages.cryptonite-openssl: redistribute 2017-01-28 11:20:30 +01:00
Domen Kožar 0056a3a9c4
haskellPackages.hspec-expectations-pretty-diff: fix build 2017-01-28 10:56:22 +01:00
Karn Kallio 9027474b7e racket 6.8
The attached patch advances the version of the racket expression in
nixpkgs to the latest released 6.8 version.

From 815aae487d5ed4b70145ebadc03a5bd040a8a829 Mon Sep 17 00:00:00 2001
From: Karn Kallio <kkallio@skami.org>
Date: Fri, 27 Jan 2017 22:55:18 -0400
Subject: [PATCH] racket: advance to the 6.8 latest released version.
2017-01-27 22:01:57 -05:00
Chris Hodapp 7638578342 RStudio: Optionally allow packages from custom R environment
https://nixos.org/nixpkgs/manual/#r-packages contains a method for
setting up an R environment with a specific set of libraries, and it
creates an R wrapper which points R to those libraries.

The package RStudio relies on the standard R package, which then
cannot access any of the libraries specified in a custom R
environment.  While one may easily use pkgs.rstudio.override to change
rstudio's R dependency to the custom R environment, this accomplishes
nothing because while RStudio runs the correct R wrapper it clears out
the environment variable R_LIBS_SITE - and so it is still unable to
use any of those packages.

In order to work around this problem, these changes allow the user to
optionally modify rstudio's wrapper to set environment variable
R_PROFILE_USER to an R script which sets R's .libPaths(..) to point to
the same libraries; that script is generated from R_LIBS_SITE in the R
wrapper.

By default, this change has no effect.  If R is overridden to
something else, and if useRPackages is changed from its default of
false, then the change described above is made; for instance:

{
  packageOverrides = pkgs: let self = pkgs.pkgs; in
  rec {
    rEnv = pkgs.rWrapper.override {
      packages = with self.rPackages; [
        dplyr ggplot2 e1071 rpart reshape
      ];
    };
    rstudioEnv = pkgs.rstudio.override { R = rEnv; useRPackages = true; };
  };
}
2017-01-27 18:54:50 -05:00
Allen Nelson 06a945f017 lsof working on darwin 2017-01-27 15:22:39 -08:00
Tadas Barzdzius a2304b0ea3 rustfmt: 0.6.3 -> 0.7.1 2017-01-27 22:07:34 +01:00
Tadas Barzdzius edbdb4b07e rustracer: 1.2.10 -> 2.0.5 2017-01-27 22:07:34 +01:00
Robin Gloster ff89e81898
libmsgpack_1_4: remove 2017-01-27 22:03:23 +01:00
Robin Gloster 52be026bba
libmsgpack_0_5: remove 2017-01-27 21:59:16 +01:00
Robin Gloster 426b61a1c7
openssl_1_0_1: remove 2017-01-27 21:29:53 +01:00
Robin Gloster c466e31a0f
libressl_2_3: remove 2017-01-27 20:39:32 +01:00
Robin Gloster c67805ff17
llvmPackages_36: remove 2017-01-27 20:12:54 +01:00
Robin Gloster edef570ad7
clooj: fix download 2017-01-27 20:09:49 +01:00
Robin Gloster aa686fe5c3
gnutls33: remove 2017-01-27 18:37:24 +01:00
Robin Gloster cb6490fc76 Revert "Mark ihaskell as broken. Closes #22047." 2017-01-27 12:38:44 +01:00
Joachim F 7774b9ea84 Merge pull request #22190 from peterhoeg/f/wp
wp-cli: add bash completion
2017-01-27 12:17:42 +01:00
Langston Barrett d486fb053b coqPackages.math-classes: init at 2016-06-08 2017-01-27 11:16:30 +00:00
Tom Hunger 6dd5c9de73 Mark ihaskell as broken. Closes #22047.
meta.broken doesn't work in buildEnv so we abort when the dependencies
are evaluated.

See bug for more context.
2017-01-27 11:34:34 +01:00
David Terry 9276178e68 sfml: 2.3 -> 2.4.1 2017-01-27 10:59:20 +01:00
Sander van der Burg b81001188c xcodeenv, titaniumenv: fix IPA builds by granting codesign the right permissions 2017-01-27 10:50:36 +01:00
Frederik Rietdijk c42cfa1e91 pythonPackages.ansible_2_1: init at 2.1.4.0 2017-01-27 10:15:31 +01:00
Frederik Rietdijk 46b1ea260a pythonPackages.ansible2: move 2.2 to separate file, make default
`pythonPackages.ansible_2_2` is now the default `ansible`.
2017-01-27 10:15:31 +01:00
Graham Christensen 70270ca6b5 Merge pull request #22163 from MP2E/ffmpeg_full_update
ffmpeg-full: 3.1.3 -> 3.2.2
2017-01-26 21:33:41 -05:00
Tim Steinbach 1eea940506
openjdk8: 8u122-04 -> 8u121-13 2017-01-26 20:36:22 -05:00
Tim Steinbach 4ec8ee52e6
zulu: Add home 2017-01-26 19:46:51 -05:00
Vladimír Čunát f0bf46d863
liburcu: 0.8.6 -> 0.9.3, doCheck = true
... with hope it will start to work on Darwin.
/cc maintainer @bjornfor.
2017-01-26 22:32:13 +01:00
Tuomas Tynkkynen e2a2f6d595 Merge pull request #22117 from dezgeg/aarch64-for-merge
Aarch64 (ARM64) support
2017-01-26 17:52:28 +02:00
Thomas Tuegel bca9bcb3c3 Merge pull request #22162 from MP2E/fdk_aac_update
fdk-aac: 0.1.4 -> 0.1.5
2017-01-26 09:12:18 -06:00
Franz Pletz 6626b62241
openssl_1_0_1: not maintained anymore, rename as -vulnerable
This is not maintained anymore upstream but is still used by sslscan.
Until this package is updated or fixed, we'll keep it around under
the unambiguous name openssl_1_0_1-vulnerable.
2017-01-26 15:41:07 +01:00