Merge branch 'master.upstream' into staging.upstream
This commit is contained in:
@@ -17,11 +17,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
makeFlags = "prefix=$(out)";
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://dag.wieers.com/home-made/dstat/;
|
||||
description = "Versatile resource statistics tool";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ jgeerds ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{ stdenv, fetchurl, xz, zlib, pkgconfig, libxslt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "kmod-20";
|
||||
name = "kmod-21";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/linux/utils/kernel/kmod/${name}.tar.xz";
|
||||
sha256 = "186sz8b82n02yykza6a1q8fk80fl5gx0nr42wpmzjc9w36ia3hc9";
|
||||
sha256 = "1h4m1mkknxcshsz1qbg9riszmynix2ikg7q8inq7bkvlmx4982hn";
|
||||
};
|
||||
|
||||
# Disable xz/zlib support to prevent needing them in the initrd.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, docbook2x
|
||||
, docbook_xml_dtd_45, systemd
|
||||
, docbook_xml_dtd_45, systemd, wrapPython
|
||||
, libapparmor ? null, gnutls ? null, libseccomp ? null, cgmanager ? null
|
||||
, libnih ? null, dbus ? null, libcap ? null
|
||||
, libnih ? null, dbus ? null, libcap ? null, python3 ? null
|
||||
}:
|
||||
|
||||
let
|
||||
@@ -20,7 +20,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
autoreconfHook pkgconfig perl docbook2x systemd
|
||||
libapparmor gnutls libseccomp cgmanager libnih dbus libcap
|
||||
libapparmor gnutls libseccomp cgmanager libnih dbus libcap python3
|
||||
wrapPython
|
||||
];
|
||||
|
||||
patches = [ ./support-db2x.patch ];
|
||||
@@ -49,6 +50,8 @@ stdenv.mkDerivation rec {
|
||||
"LXCPATH=\${TMPDIR}/var/lib/lxc"
|
||||
];
|
||||
|
||||
postInstall = "wrapPythonPrograms";
|
||||
|
||||
meta = {
|
||||
homepage = "http://lxc.sourceforge.net";
|
||||
description = "userspace tools for Linux Containers, a lightweight virtualization system";
|
||||
@@ -63,6 +66,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ simons wkennington ];
|
||||
maintainers = with maintainers; [ simons wkennington globin ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
{ stdenv, fetchurl, pkgconfig, ncurses, systemd }:
|
||||
{ lib, stdenv, fetchurl, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "procps-ng-3.3.10";
|
||||
stdenv.mkDerivation {
|
||||
name = "procps-3.3.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/procps-ng/${name}.tar.xz";
|
||||
url = mirror://sourceforge/procps-ng/procps-ng-3.3.10.tar.xz;
|
||||
sha256 = "013z4rzy3p5m1zp6mmynpblv0c6zlcn91pw4k2vymz2djyc6ybm0";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ncurses systemd ];
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
makeFlags = "usrbin_execdir=$(out)/bin";
|
||||
|
||||
@@ -19,21 +19,13 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
# Too red
|
||||
configureFlags = [
|
||||
"--disable-modern-top"
|
||||
"--enable-watch8bit"
|
||||
"--with-systemd"
|
||||
"--enable-skill"
|
||||
"--enable-oomem"
|
||||
"--enable-sigwinch"
|
||||
];
|
||||
configureFlags = [ "--disable-modern-top" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = {
|
||||
homepage = http://sourceforge.net/projects/procps-ng/;
|
||||
description = "Utilities that give information about processes using the /proc filesystem";
|
||||
priority = 10; # less than coreutils, which also provides "kill" and "uptime"
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
|
||||
CONFIG_IEEE80211W=y
|
||||
CONFIG_TLS=openssl
|
||||
CONFIG_TLSV11=y
|
||||
CONFIG_TLSV12=y
|
||||
#CONFIG_TLSV12=y see #8332
|
||||
CONFIG_IEEE80211R=y
|
||||
CONFIG_DEBUG_SYSLOG=y
|
||||
#CONFIG_PRIVSEP=y
|
||||
|
||||
Reference in New Issue
Block a user