Commit Graph

21185 Commits

Author SHA1 Message Date
Peter Simons
a6f91ea211 haskell-diagrams-contrib: update to version 1.1.2.4 2014-12-13 12:06:04 +01:00
Peter Simons
4eca50ceb5 haskell-dbus: update to version 0.10.9 2014-12-13 12:06:04 +01:00
Peter Simons
188de38519 haskell-data-lens-light: update to version 0.1.2.1 2014-12-13 12:06:04 +01:00
Peter Simons
f8f4e2168a haskell-cuda: update to version 0.6.5.1 2014-12-13 12:06:04 +01:00
Peter Simons
a00162df4a haskell-crypto-pubkey: update to version 0.2.5 2014-12-13 12:06:04 +01:00
Peter Simons
373f0f3b48 haskell-conduit-extra: update to version 1.1.5 2014-12-13 12:06:03 +01:00
Peter Simons
74296f721e haskell-clientsession: update to version 0.9.1.1 2014-12-13 12:06:03 +01:00
Peter Simons
a04f3335f8 haskell-cheapskate: update to version 0.1.0.2 2014-12-13 12:06:03 +01:00
Peter Simons
1373abcd81 haskell-cgrep: update to version 6.4.9 2014-12-13 12:06:03 +01:00
Peter Simons
fbce0516b4 haskell-bytes: update to version 0.14.1.2 2014-12-13 12:06:03 +01:00
Peter Simons
5094de7ee5 haskell-bound: update to version 1.0.4 2014-12-13 12:06:03 +01:00
Peter Simons
d6a07172ec haskell-atto-lisp: update to version 0.2.2 2014-12-13 12:06:03 +01:00
Peter Simons
213d463e57 haskell-algebra: update to version 4.2 2014-12-13 12:06:02 +01:00
Peter Simons
53eb3f3166 haskell-aeson-pretty: update to version 0.7.2 2014-12-13 12:06:02 +01:00
Peter Simons
18794d72bf haskell-ad: update to version 4.2.1.1 2014-12-13 12:06:02 +01:00
Peter Simons
b1147746c6 haskell-active: update to version 0.1.0.17 2014-12-13 12:06:02 +01:00
Peter Simons
028363d969 haskell-Rasterific: update to version 0.4 2014-12-13 12:06:02 +01:00
Peter Simons
ccd74d7497 haskell-ghc-server: drop obsolete package 2014-12-13 12:06:01 +01:00
Peter Simons
5e2f4a4a73 haskell-gloss-rendering: add version 1.9.2.1 2014-12-13 12:06:01 +01:00
Peter Simons
17589d33da haskell-list-t: add version 0.3.0 2014-12-13 12:06:01 +01:00
Peter Simons
f514804aad haskell-mtl-prelude: add version 1.0.1 2014-12-13 12:06:01 +01:00
Peter Simons
d9566a3b35 haskell-hlint: update to version 1.9.13 2014-12-13 12:06:01 +01:00
Michael Raskin
fbceebd868 Merge pull request #5288 from mstarzyk/j
j: Fix building libj.so
2014-12-13 10:49:30 +03:00
Domen Kožar
b7eba773dc hhvm: 3.2.0 -> 3.3.0, fix build
(cherry picked from commit 9d0d9ae9f7ea940ea63dfe019c2818edd6fc376a)
Signed-off-by: Domen Kožar <domen@dev.si>
2014-12-12 17:09:48 +01:00
Luca Bruno
f28eff8b82 Merge branch 'polari', PR #5264 2014-12-12 15:12:54 +01:00
Damien Cassou
bc789064d8 Package for the Polari IRC app
This commit includes a patch to telepathy's derivation, written by
Lethalman. This patch makes public the Telepathy's dependency to
dbus_glib. This patch will become problematic with the next pkgconfig
upgrade but this upgrade should make the patch irrelevant. See these 2
links for more information:
- https://bugs.freedesktop.org/show_bug.cgi?id=15199
- https://bugzilla.redhat.com/show_bug.cgi?id=436773

Modified by Luca Bruno:
- Moved telepathy_idle to propagatedUserEnvPkgs
- Added myself to maintainers
- Enable parallel building
2014-12-12 15:12:19 +01:00
Eelco Dolstra
fcd4aa44d5 valgrind: Update to 3.10.1 2014-12-12 15:08:25 +01:00
Pascal Wittmann
377822fb64 mujs: update to latest revision 2014-12-12 12:14:13 +01:00
Peter Simons
46b0c68ea2 Merge pull request #5282 from rickynils/java-truststore-env
openjdk: Read SSL truststore from JAVAX_NET_SSL_TRUSTSTORE
2014-12-12 09:22:15 +01:00
Austin Seipp
0bdff430a4 nixpkgs: rr 2.0.0 -> 3.0.0, with 64bit support
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-12 01:20:23 -06:00
Jaka Hudoklin
0d01793870 Merge pull request #5290 from bbarker/gradle221
keeping gradle updated
2014-12-12 03:06:33 +01:00
Rickard Nilsson
95fdc8cf29 openjdk: Introduce JAVAX_NET_SSL_TRUSTSTORE env
This small patch makes it possible to control java's truststore path through
the environment. This lets you add (system- or session-wide) CAs that should
be allowed by Java. Java users can still use -Djavax.net.ssl.truststore to
override the truststore set by JAVAX_NET_SSL_TRUSTSTORE.

Something like this can be used to build the truststore (in this example just
using the standard pkgs.cacert CA-bundle):

{
  environment.variables.JAVAX_NET_SSL_TRUSTSTORE = "${
    pkgs.runCommand "cacerts" {} ''
      ${pkgs.perl}/bin/perl \
        ${pkgs.path}/pkgs/development/compilers/openjdk/generate-cacerts.pl \
        ${pkgs.jre}/bin/keytool \
        ${pkgs.cacert}/etc/ca-bundle.crt
      mv cacerts $out
    ''
  }";
}

Ideally, the dependency on pkgs.cacert should also be removed from pkgs.openjdk
to avoid rebuilding java each time the standard CA-bundle changes. Something
along the example above must then be added to NixOS (however, it would be
nice to not depend on ${pkgs.jre}/bin/keytool to generate that environment
variable).
2014-12-12 01:14:09 +01:00
Shaun Sharples
5f18c41a1b haskell-ekg-bosun: update to 1.0.3 2014-12-11 21:20:30 +01:00
Shaun Sharples
4d2f2c18de haskell-wreq: update to 0.3.0 2014-12-11 21:20:30 +01:00
Shaun Sharples
663bee7e8b haskell-http-client: update to 0.4.6 2014-12-11 21:20:29 +01:00
Vincent Laporte
c99c8c3e43 dypgen: adds meta.platforms 2014-12-11 16:15:02 +01:00
Peter Simons
dfbb2b37b5 haskell-hackage-db: update to version 1.11 2014-12-11 14:06:08 +01:00
Peter Simons
5ff896ff65 haskell-hackage-db: update to version 1.10 2014-12-11 11:42:05 +01:00
Domen Kožar
776d796221 folly: disable on 32bit (unsupported) 2014-12-11 10:38:52 +01:00
Domen Kožar
3c9828fd77 classpath: fix build 2014-12-11 10:38:52 +01:00
Vincent Laporte
cb3f9bf160 omake: add meta.platforms 2014-12-11 09:19:30 +01:00
Michael Raskin
a199693cab Update/Fix OVMF 2014-12-11 08:46:13 +03:00
bbarker
2682c01f29 keeping gradle updated 2014-12-11 04:19:14 +01:00
Mateusz Kowalczyk
562fdc2050 Revert "haskell-hxt: update to 9.3.1.9"
This reverts commit 439a71f1b4.

This is because hxt-9.3.1.9 needs >=mtl-2.2.1
2014-12-10 23:27:45 +00:00
Maciek Starzyk
8989a32d34 j: Fix building libj.so 2014-12-10 22:43:42 +01:00
Trevor L. McDonell
01d274e7bd Update c2hs to 0.20.1 2014-12-10 16:01:37 -05:00
Vladimír Čunát
c8a53923fc libyaml: fix CVE-2014-9130 by upstream patch 2014-12-10 19:26:09 +01:00
Emery Hemingway
be2060f1e7 glibc_multi: fix package name (close #5284)
"multi" should be between the "glibc" and the version
2014-12-10 18:31:31 +01:00
Mateusz Kowalczyk
b13301ecbe ffmpeg: update from 2.4.4 to 2.5 (close #5279) 2014-12-10 18:13:53 +01:00
Eelco Dolstra
4d918cb6c7 php-5.3: Remove
PHP 5.3 is EOL (see http://php.net/supported-versions.php). NixOS
14.12 is a good opportunity to drop it.
2014-12-10 17:19:37 +01:00