Merge staging-next into staging
This commit is contained in:
@@ -5,7 +5,7 @@ stdenv.mkDerivation {
|
||||
version = "20200910";
|
||||
|
||||
hardeningDisable = [ "pic" ];
|
||||
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hartkopp";
|
||||
repo = "can-isotp";
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
nativeBuildInputs = kernel.moduleBuildDependencies;
|
||||
|
||||
|
||||
meta = with lib; {
|
||||
description = "Kernel module for ISO-TP (ISO 15765-2)";
|
||||
homepage = "https://github.com/hartkopp/can-isotp";
|
||||
@@ -33,4 +33,4 @@ stdenv.mkDerivation {
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.evck ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,27 +3,25 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cifs-utils";
|
||||
version = "6.9";
|
||||
version = "6.12";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://samba/pub/linux-cifs/cifs-utils/${pname}-${version}.tar.bz2";
|
||||
sha256 = "175cp509wn1zv8p8mv37hkf6sxiskrsxdnq22mhlsg61jazz3n0q";
|
||||
sha256 = "1vw570pvir73kl4y6fhd6ns936ankimkhb1ii43yh8lr0p1xqbcj";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook docutils pkg-config ];
|
||||
|
||||
buildInputs = [ kerberos keyutils pam talloc ];
|
||||
|
||||
configureFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||
configureFlags = [ "ROOTSBINDIR=$(out)/sbin" ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||
# AC_FUNC_MALLOC is broken on cross builds.
|
||||
"ac_cv_func_malloc_0_nonnull=yes"
|
||||
"ac_cv_func_realloc_0_nonnull=yes"
|
||||
];
|
||||
|
||||
makeFlags = [ "root_sbindir=$(out)/sbin" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.samba.org/linux-cifs/cifs-utils/";
|
||||
homepage = "https://wiki.samba.org/index.php/LinuxCIFS_utils";
|
||||
description = "Tools for managing Linux CIFS client filesystems";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.lgpl3;
|
||||
|
||||
@@ -32,4 +32,4 @@ stdenv.mkDerivation rec {
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ zraexy ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "input-utils";
|
||||
version = "1.3";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.kraxel.org/releases/input/input-${version}.tar.gz";
|
||||
sha256 = "11w0pp20knx6qpgzmawdbk1nj2z3fzp8yd6nag6s8bcga16w6hli";
|
||||
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
|
||||
sed -i -e 's|/lib/modules|${kernel.dev}/lib/modules|' driver/mxconf
|
||||
sed -i -e 's|/lib/modules|${kernel.dev}/lib/modules|' driver/Makefile
|
||||
'';
|
||||
|
||||
|
||||
installPhase = ''
|
||||
install -v -D -m 644 ./driver/mxu11x0.ko "$out/lib/modules/${kernel.modDirVersion}/kernel/drivers/usb/serial/mxu11x0.ko"
|
||||
install -v -D -m 644 ./driver/mxu11x0.ko "$out/lib/modules/${kernel.modDirVersion}/misc/mxu11x0.ko"
|
||||
|
||||
@@ -3,19 +3,19 @@
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "powerstat";
|
||||
version = "0.02.24";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "0yrc1xi9flxn2mvmzp0b0vd0md5z4p8fd4y8bszc67xy12qiqy0j";
|
||||
};
|
||||
|
||||
|
||||
installFlags = [ "DESTDIR=${placeholder "out"}" ];
|
||||
|
||||
|
||||
postInstall = ''
|
||||
mv $out/usr/* $out
|
||||
rm -r $out/usr
|
||||
'';
|
||||
|
||||
|
||||
meta = with lib; {
|
||||
description = "Laptop power measuring tool";
|
||||
homepage = "https://kernel.ubuntu.com/~cking/powerstat/";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, fuse, pcre }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, fuse, pcre }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "rewritefs";
|
||||
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
||||
rev = "33fb844d8e8ff441a3fc80d2715e8c64f8563d81";
|
||||
sha256 = "15bcxprkxf0xqxljsqhb0jpi7p1vwqcb00sjs7nzrj7vh2p7mqla";
|
||||
};
|
||||
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ fuse pcre ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user