1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

linuxPackages.ena: disable pic

This commit is contained in:
Robin Gloster 2016-08-13 10:11:40 +00:00
parent af04b6d5a5
commit 0f274be2fd

View file

@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
sha256 = "03w6xgv3lfn28n38mj9cdi3px5zjyrbxnflpd3ggivkv6grf9fp7";
};
hardeningDisable = [ "pic" ];
configurePhase =
''
cd kernel/linux/ena
@ -30,5 +32,6 @@ stdenv.mkDerivation rec {
homepage = https://github.com/amzn/amzn-drivers;
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.eelco ];
platforms = lib.platforms.linux;
};
}