|
@@ -16,16 +16,22 @@ stdenv.mkDerivation {
|
|
ccache
|
|
ccache
|
|
rsync
|
|
rsync
|
|
unzip
|
|
unzip
|
|
-
|
|
|
|
|
|
+ texinfo
|
|
# Example Build-time Additional Dependencies
|
|
# Example Build-time Additional Dependencies
|
|
pkgconfig
|
|
pkgconfig
|
|
];
|
|
];
|
|
buildInputs = [
|
|
buildInputs = [
|
|
# Example Run-time Additional Dependencies
|
|
# Example Run-time Additional Dependencies
|
|
openssl
|
|
openssl
|
|
- x11
|
|
|
|
|
|
+ xlibsWrapper
|
|
qemu
|
|
qemu
|
|
|
|
+ # e2fsprogs needs some optional parameter to activate fuse2fs with which
|
|
|
|
+ # the qemu image will be mounted without root access.
|
|
|
|
+ (e2fsprogs.overrideAttrs (oldAttrs: {
|
|
|
|
+ buildInputs = oldAttrs.buildInputs ++ [ pkgs.fuse ];
|
|
|
|
+ }))
|
|
# glibc
|
|
# glibc
|
|
];
|
|
];
|
|
|
|
+
|
|
hardeningDisable = [ "format" "fortify" ];
|
|
hardeningDisable = [ "format" "fortify" ];
|
|
}
|
|
}
|