Commit Graph
101116 Commits
Author SHA1 Message Date
Graham ChristensenandGitHub 8c40604459 Merge pull request #22482 from bendlas/update-chromium
chromium: 56.0.2924.76 -> 56.0.2924.87
2017-02-05 22:43:20 -05:00
Graham ChristensenandGitHub 5d8d1a5623 Merge pull request #22479 from Szczyp/rhc
rhc: 1.36.4 -> 1.38.7
2017-02-05 22:42:55 -05:00
Herwig Hochleitner 4a9efe9acf chromium: 56.0.2924.76 -> 56.0.2924.87 2017-02-06 04:36:11 +01:00
Kirill Elagin 2d1d8394e0 tarsnap: macOS 2017-02-06 05:21:19 +03:00
Michael RaitzaandFranz Pletz 59ad58cd9b audio-recorder: 1.7-5 -> 1.9.4 2017-02-06 01:55:49 +01:00
VolthandFranz Pletz c771d499f9 systemtap: 2016-09-16 -> 2017-02-04 2017-02-06 01:54:19 +01:00
Nikolay AmiantovandGitHub 9beeee2717 Merge pull request #22431 from abbradar/postfix-local
postfix service: don't empty local_recipient_maps
2017-02-06 03:50:05 +03:00
TANIGUCHI KoheiandFranz Pletz 9d6f2fd297 nkf: 2.1.3 -> 2.1.4 2017-02-06 01:43:34 +01:00
Szczyp 33c09a0e40 rhc: 1.36.4 -> 1.38.7
Fix: CVE-2016-10173
2017-02-06 01:10:51 +01:00
Joachim SchieleandGitHub d491728653 httpd: added serviceExpression which extends the serviceType concept -> allows that httpd services can live outside of nixpkgs (#22269) 2017-02-06 01:08:58 +01:00
Benjamin Staffin 962c4430ba redshift-plasma-applet: init at 1.0.17 2017-02-05 18:15:39 -05:00
Daiderd JordanandGitHub b5957eaf2f Merge pull request #22389 from matthewbauer/emacs-new-icons
emacs25Macport: use newer icons
2017-02-05 23:52:26 +01:00
John EricsonandGitHub f6ef6b56fe Merge pull request #22387 from Ericson2314/cross-3-platforms
cross stdenv: let build package's build deps resolve to native packages
2017-02-05 17:41:31 -05:00
Nikolay Amiantov 52c7e647ab postfix service: don't empty local_recipient_maps
From Postfix documentation:

With this setting, the Postfix SMTP server will not reject mail with "User
unknown in local recipient table". Don't do this on systems that receive mail
directly from the Internet. With today's worms and viruses, Postfix will become
a backscatter source: it accepts mail for non-existent recipients and then
tries to return that mail as "undeliverable" to the often forged sender
address.
2017-02-06 01:41:27 +03:00
Joachim Fasting 2c21f742b2 minisign: 0.6 -> 0.7 2017-02-05 22:57:24 +01:00
Graham Christensen ef875a60c1 389-ds-base: 1.3.5.4 -> 1.3.5.15 2017-02-05 16:40:28 -05:00
Thomas TuegelandGitHub d93fdc0f54 Merge pull request #22314 from peterhoeg/u/krename
krename-qt5: init at 20161228
2017-02-05 15:26:08 -06:00
Aristid Breitkreuz 00517f1779 rr: 4.4.0 -> 4.5.0 2017-02-05 22:00:42 +01:00
Peter Simons 1f18f65650 callCabal2nix: take "name" parameter as a function argument
The callCabal2nix function cannot reliably determine the appropriate "name" for
the package it's processing. Attempts to derive this information have led to
plenty of evaluation errors, and so I'd like to go for the obvious and reliable
solution now and let the caller specify that bit of information.

Here is an example that demonstrates how to use callCabal2nix.

    let
      pkgs = import <nixpkgs> {};
      src = pkgs.fetchFromGitHub {
        owner = "gtk2hs";
        repo = "gtk2hs";
        rev = "eee61d84edf1dd44f8d380d7d7cae2405de50124";
        sha256 = "12i53grimni0dyjqjydl120z5amcn668w4pfhl8dxscjh4a0l5nb";
      };
    in
      pkgs.haskellPackages.callCabal2nix "gtkhs-tools" "${src}/tools" {}
2017-02-05 21:18:27 +01:00
Michael RaskinandGitHub c84d0dd419 Merge pull request #22421 from orivej/unison-fsmonitor
unison: install unison-fsmonitor
2017-02-05 19:02:41 +00:00
Michael RaskinandGitHub 6642e5d873 Merge pull request #22146 from dasuxullebt/gbsplay
gbsplay: init at version 2016-12-17
2017-02-05 19:01:47 +00:00
Alexey ShmalkoandGitHub 3bdfd75681 Merge pull request #22462 from andsild/ansicolor
ansicolor: init at 0.2.4
2017-02-05 20:56:12 +02:00
Peter SimonsandGitHub 956c1fe3e8 Merge pull request #22427 from 3noch/fix-callCabal2nix
haskellPackages.callCabal2nix: provide fallback name
2017-02-05 19:37:19 +01:00
Joachim FandGitHub 8012ead681 Merge pull request #22447 from rnhmjoj/fish
fish: 2.3.1 -> 2.5.0
2017-02-05 19:09:43 +01:00
Pascal Wittmann 5cded7db86 rrdtool: 1.5.6 -> 1.6.0 2017-02-05 19:06:29 +01:00
Jascha Geerds ffb91cc697 docker_compose: Remove upper bound version limitations 2017-02-05 18:39:30 +01:00
John Ericson 5eaea6cee0 cross stdenv: let build package's build deps resolve to native packages
This fixes the "sliding window" principle:
  0. Run packages:       build = native;  host = foreign; target = foreign;
  1. Build packages:     build = native;  host = native;  target = foreign;
  2. Vanilla packages:   build = native;  host = native;  target = native;
  3. Vanilla packages:   build = native;  host = native;  target = native;
  n+3. ...

Each stage's build dependencies are resolved against the previous stage,
and the "foreigns" are shifted accordingly. Vanilla packages alone are
built against themsevles, since there are no more "foreign"s to shift away.

Before, build packages' build dependencies were resolved against
themselves:
  0. Run packages:       build = native;  host = foreign; target = foreign;
  1. Build packages:     build = native;  host = native;  target = foreign;
  2. Build packages:     build = native;  host = native;  target = foreign;
  n+2. ...

This is wrong because that principle is violated by the target
platform staying foreign.

This will change the hashes of many build packages and run packages, but
that is OK. This is an unavoidable cost of fixing cross compiling.

The cross compilation docs have been updated to reflect this fix.
2017-02-05 12:01:53 -05:00
Tim Steinbach f65a3515f4 rkt: 1.23.0 -> 1.24.0 2017-02-05 11:51:05 -05:00
Joachim FandGitHub 09b6d2eaed Merge pull request #22432 from peterhoeg/d/freerdp
freerdp: 20160909 -> 20170201 and rename freerdpStable to freerdp_legacy
2017-02-05 17:08:19 +01:00
Joachim FandGitHub 4459f26ad8 Merge pull request #22175 from dancek/illum
illum: init at 0.4
2017-02-05 16:41:30 +01:00
Vladimír Čunát 94c73dab1d Merge #22416: wget: 1.18 -> 1.19 2017-02-05 15:51:24 +01:00
asildnes 102e4eed6f ansicolor: init at 0.2.4 2017-02-05 15:06:11 +01:00
Vladimír Čunát 5887affc26 gtk3: maintenance 3.22.6 -> 3.22.7 2017-02-05 15:02:11 +01:00
Vladimír Čunát 768d445cb5 gdk-pixbuf: maintenance 2.36.3 -> 2.36.4 2017-02-05 14:59:04 +01:00
Vladimír Čunát 5ced6c7e1b libdrm: 2.4.74 -> 2.4.75 2017-02-05 14:58:41 +01:00
Vladimír Čunát 35dffbdf54 mesa: maintenance 13.0.3 -> 13.0.4 2017-02-05 14:29:46 +01:00
Vladimír Čunát 6d2c381e3e libssh: bugfix 0.7.3 -> 0.7.4 2017-02-05 14:22:20 +01:00
Vladimír Čunát 3b583d943e Merge #19328: mkWrapper fix and docs 2017-02-05 14:09:22 +01:00
Lengyel BalázsandVladimír Čunát 372cb3760e Merge #17694: curl: add gnutlsSupport ? false
(incl. a nitpick change from vcunat)
2017-02-05 13:37:16 +01:00
Vladimír Čunát 150cddca6f zlib: 1.2.10 -> 1.2.11 2017-02-05 13:30:44 +01:00
Nikolay Amiantov c226a93a9e pythonPackages.pyqt5: enable qtwebengine support 2017-02-05 15:05:53 +03:00
Nikolay Amiantov 41c1534aed qt5.qtwebengine: fix ca bundle path 2017-02-05 15:05:51 +03:00
Michael Raskin 6d9a37bfc8 CLX and StumpWM no longer need a pinned SBCL 2017-02-05 13:03:03 +01:00
Michael Raskin 5d6f798efc stumpwm: use fresh SBCL 2017-02-05 13:03:03 +01:00
Michael Raskin 64666a402f lispPackages.clx: git-20150117 -> git-20170201 2017-02-05 13:03:03 +01:00
Shea Levy 67ef18d01a supplicant nixos module: Allow not specifying the configFile path 2017-02-05 06:50:20 -05:00
Nikolay AmiantovandGitHub 90bc1a8595 Merge pull request #22353 from abbradar/bluetooth
Bluetooth improvements
2017-02-05 13:18:48 +03:00
Pascal WittmannandGitHub 91869fb848 Merge pull request #22452 from kirelagin/libnfc-osx
libnfc: Add missing dependency on readline
2017-02-05 11:15:33 +01:00
Eelco DolstraandGitHub efd8dea185 Merge pull request #22434 from lsix/update_sed
gnused: 4.3 -> 4.4
2017-02-05 11:15:12 +01:00
Eelco Dolstra 42574f52b9 Remove references to $NIX_STRIP_DEBUG
This was removed in 3ea1c30846.
2017-02-05 11:08:32 +01:00