Merge remote-tracking branch 'upstream/staging-next' into HEAD

This commit is contained in:
Jörg Thalheim
2021-01-17 18:09:56 +01:00
303 changed files with 1084 additions and 964 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
MIDI functionality to the Linux-based operating system.
'';
license = licenses.gpl3Plus;
license = licenses.lgpl21Plus;
platforms = platforms.linux;
};
}
+1 -1
View File
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A tool for checking security bits on executables";
homepage = "http://www.trapkit.de/tools/checksec.html";
homepage = "https://www.trapkit.de/tools/checksec/";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice globin ];
+3 -1
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, linuxHeaders, perl }:
{ lib, stdenv, fetchurl, buildPackages, linuxHeaders, perl }:
let
commonMakeFlags = [
@@ -18,7 +18,9 @@ stdenv.mkDerivation rec {
patches = [ ./no-reinstall-kernel-headers.patch ];
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ perl ];
strictDeps = true;
hardeningDisable = [ "format" "stackprotector" ];