Merge branch 'master.upstream' into staging.upstream

This commit is contained in:
William A. Kennington III
2015-09-04 12:05:11 -07:00
41 changed files with 1072 additions and 268 deletions

View File

@@ -1,12 +1,12 @@
{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "2015-08-29";
version = "2015-09-04";
src = fetchgit {
url = "git://github.com/ceph/ceph.git";
rev = "54626351679fe312d5b96cc0304755ae5f1ece40";
sha256 = "12rdp1q7arxhg259y08pzix22yjlrjs5qmwv342qcl5xbfkg502r";
rev = "8c17e0197481205f8726b06d57313ffe08fba2bf";
sha256 = "189l412m6x0f0mqzhgzwfa3sgm5xfxzb9synlvbfm3n1fgdhj5iy";
};
patches = [ ./fix-pythonpath.patch ];

View File

@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, udev }:
stdenv.mkDerivation rec {
name = "dhcpcd-6.9.2";
name = "dhcpcd-6.9.3";
src = fetchurl {
url = "mirror://roy/dhcpcd/${name}.tar.xz";
sha256 = "0w4aqpn6wczvrffc51lq87acvqwqdskk7948z3sz9laslci29y79";
sha256 = "0lxfis066ijjlqha2mf49v8mydmnnjb6nijihfn65ylmsqg4g2b0";
};
buildInputs = [ pkgconfig udev ];

View File

@@ -1,15 +1,16 @@
{ stdenv, fetchgit, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
stdenv.mkDerivation rec {
name = "tinc-1.1pre-2015-07-17";
name = "tinc-1.1pre-2015-07-22";
src = fetchgit {
url = "git://tinc-vpn.org/tinc";
rev = "f92c3446f2052a59d1e6a28f1bc7cec278cb1e48";
sha256 = "1y15fk4i6jm9w3qkami2vgp5zfrm5frjxwfmwr4xiw23bmy9cgim";
rev = "56a8b90d863171d62e0a337b5635fbfc53a67fb0";
sha256 = "081z4xs5l988g1s0yr7fvnysajd05bx6s54sh84jvq7ij8af71dm";
};
buildInputs = [ autoreconfHook texinfo ncurses readline zlib lzo openssl ];
nativeBuildInputs = [ autoreconfHook texinfo ];
buildInputs = [ ncurses readline zlib lzo openssl ];
configureFlags = [
"--sysconfdir=/etc"

View File

@@ -86,13 +86,15 @@ in rec {
nix = nixStable;
nixStable = common rec {
name = "nix-1.9";
name = "nix-1.10";
src = fetchurl {
url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz";
sha256 = "8a47cd7c35dfa628a4acfaef387e7451013c61d250bbcf1f38067a7c73f9f3e1";
sha256 = "5612ca7a549dd1ee20b208123e041aaa95a414a0e8f650ea88c672dc023d10f6";
};
};
nixUnstable = nix;
/*
nixUnstable = lib.lowPrio (common rec {
name = "nix-1.10pre4212_e12cf82";
src = fetchurl {
@@ -100,5 +102,6 @@ in rec {
sha256 = "4165db0ea9bb6b5cd96d294348299f20ac045fc18db680104ff98fe9ac893f72";
};
});
*/
}