2010-10-07 15:14:15 +00:00
|
|
|
{ stdenv, fetchurl, lib, iasl, dev86, pam, libxslt, libxml2, libX11, xproto, libXext
|
2014-01-05 01:57:21 +00:00
|
|
|
, libXcursor, libXmu, qt4, libIDL, SDL, libcap, zlib, libpng, glib, kernel, lvm2
|
2014-01-30 23:34:04 +00:00
|
|
|
, which, alsaLib, curl, libvpx, gawk
|
2012-03-20 13:54:01 +00:00
|
|
|
, xorriso, makeself, perl, pkgconfig
|
|
|
|
, javaBindings ? false, jdk ? null
|
|
|
|
, pythonBindings ? false, python ? null
|
virtualbox: Fix extension pack installation.
With hardening, we need to go a bit further rather than just allowing
/nix/store being world-writable. We now use fakeroot to make sure the
VBoxExtPackHelperApp won't moan that the files are not owned by root.
They are, but only outside of the chrooted build process.
Another issue with using fakeroot is that it doesn't seem to cope well
with arguments that contain spaces. That's why I've piped the call into
${stdenv.shell}.
Now, the really gory and confusing part is the introduction of
VBOX_PATH_APP_PRIVATE_ARCH_TOP and the change of VBOX_PATH_APP_PRIVATE.
The VBOX_PATH_APP_PRIVATE_ARCH is *only* for modules and is checked by
the hardened implementation against whether things like VMMR0.r0 or
VBoxVMM.so reside in that directory. As a side note: I admit that the
whole libexec directory is quite polluted with stuff that shouldn't be
there, but for now we've broken enough things and will tear apart the
whole structure at some day in the future[TM].
For the confusing part we have VBOX_PATH_APP_PRIVATE_ARCH_TOP, which
_should_ be the same as VBOX_PATH_APP_PRIVATE_ARCH but unfortunately,
the hardened implementation is checking against this directory (in
IsValidBaseDir) for the extension pack(why!?).
Of course, we could put even that into the libexec directory, somewhat
similar as the official package, but after all, let's at least *try* to
separate things.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-01 02:13:51 +00:00
|
|
|
, enableExtensionPack ? false, requireFile ? null, patchelf ? null, fakeroot ? null
|
2014-04-17 22:36:41 +00:00
|
|
|
, pulseSupport ? false, pulseaudio ? null
|
2014-12-15 06:13:02 +00:00
|
|
|
, enableHardening ? false
|
2009-04-16 13:44:06 +00:00
|
|
|
}:
|
2009-04-12 21:59:40 +00:00
|
|
|
|
2012-03-20 13:54:01 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2012-08-18 14:47:13 +00:00
|
|
|
let
|
2012-08-22 20:48:03 +00:00
|
|
|
|
2014-11-30 05:25:50 +00:00
|
|
|
version = "4.3.20"; # changes ./guest-additions as well
|
2012-08-22 20:48:03 +00:00
|
|
|
|
2012-08-18 14:47:13 +00:00
|
|
|
forEachModule = action: ''
|
2012-08-18 17:20:28 +00:00
|
|
|
for mod in \
|
|
|
|
$sourcedir/out/linux.*/release/bin/src/vboxdrv \
|
|
|
|
$sourcedir/out/linux.*/release/bin/src/vboxpci \
|
|
|
|
$sourcedir/out/linux.*/release/bin/src/vboxnetadp \
|
|
|
|
$sourcedir/out/linux.*/release/bin/src/vboxnetflt
|
2012-08-18 14:47:13 +00:00
|
|
|
do
|
2012-08-18 17:20:28 +00:00
|
|
|
if [ "x$(basename "$mod")" != xvboxdrv -a ! -e "$mod/Module.symvers" ]
|
|
|
|
then
|
|
|
|
cp -v $sourcedir/out/linux.*/release/bin/src/vboxdrv/Module.symvers \
|
|
|
|
"$mod/Module.symvers"
|
|
|
|
fi
|
|
|
|
INSTALL_MOD_PATH="$out" INSTALL_MOD_DIR=misc \
|
2012-08-18 14:47:13 +00:00
|
|
|
make -C "$MODULES_BUILD_DIR" "M=$mod" DEPMOD=/do_not_use_depmod ${action}
|
|
|
|
done
|
|
|
|
'';
|
2012-08-22 20:48:03 +00:00
|
|
|
|
2013-06-24 18:35:00 +00:00
|
|
|
# See https://github.com/NixOS/nixpkgs/issues/672 for details
|
2014-11-30 05:25:50 +00:00
|
|
|
extpackRevision = "96996";
|
2013-06-24 18:35:00 +00:00
|
|
|
extensionPack = requireFile rec {
|
|
|
|
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}-${extpackRevision}.vbox-extpack";
|
2013-08-10 12:30:53 +00:00
|
|
|
# IMPORTANT: Hash must be base16 encoded because it's used as an input to
|
|
|
|
# VBoxExtPackHelperApp!
|
2014-03-29 12:44:50 +00:00
|
|
|
# Tip: see http://dlc.sun.com.edgesuite.net/virtualbox/4.3.10/SHA256SUMS
|
2014-11-30 05:25:50 +00:00
|
|
|
sha256 = "7e1253f7013e9cdc84a614a0db38b40de7bbd330cb5b85bd3ef3de213773450d";
|
2013-06-24 18:35:00 +00:00
|
|
|
message = ''
|
|
|
|
In order to use the extension pack, you need to comply with the VirtualBox Personal Use
|
|
|
|
and Evaluation License (PUEL) by downloading the related binaries from:
|
|
|
|
|
|
|
|
https://www.virtualbox.org/wiki/Downloads
|
|
|
|
|
|
|
|
Once you have downloaded the file, please use the following command and re-run the
|
|
|
|
installation:
|
|
|
|
|
|
|
|
nix-prefetch-url file://${name}
|
|
|
|
'';
|
2012-12-12 06:12:46 +00:00
|
|
|
};
|
|
|
|
|
2012-08-18 14:47:13 +00:00
|
|
|
in stdenv.mkDerivation {
|
2014-01-05 01:57:21 +00:00
|
|
|
name = "virtualbox-${version}-${kernel.version}";
|
2009-04-12 21:59:40 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-04-18 19:24:10 +00:00
|
|
|
url = "http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2";
|
2014-11-30 05:25:50 +00:00
|
|
|
sha256 = "1484f8e9993ec4fe3892c5165db84d238713d2506e147ed8236541ece642e965";
|
2009-04-12 21:59:40 +00:00
|
|
|
};
|
|
|
|
|
2012-02-23 22:04:54 +00:00
|
|
|
buildInputs =
|
|
|
|
[ iasl dev86 libxslt libxml2 xproto libX11 libXext libXcursor qt4 libIDL SDL
|
2014-01-30 23:34:04 +00:00
|
|
|
libcap glib lvm2 python alsaLib curl libvpx pam xorriso makeself perl
|
2012-03-20 13:54:01 +00:00
|
|
|
pkgconfig which libXmu ]
|
|
|
|
++ optional javaBindings jdk
|
2014-04-17 22:36:41 +00:00
|
|
|
++ optional pythonBindings python
|
|
|
|
++ optional pulseSupport pulseaudio;
|
2009-04-12 21:59:40 +00:00
|
|
|
|
2013-01-10 01:21:02 +00:00
|
|
|
prePatch = ''
|
2009-04-12 21:59:40 +00:00
|
|
|
set -x
|
2014-01-05 01:57:21 +00:00
|
|
|
MODULES_BUILD_DIR=`echo ${kernel.dev}/lib/modules/*/build`
|
2012-02-23 22:04:54 +00:00
|
|
|
sed -e 's@/lib/modules/`uname -r`/build@'$MODULES_BUILD_DIR@ \
|
|
|
|
-e 's@MKISOFS --version@MKISOFS -version@' \
|
2012-03-20 13:54:01 +00:00
|
|
|
-e 's@PYTHONDIR=.*@PYTHONDIR=${if pythonBindings then python else ""}@' \
|
2009-04-12 21:59:40 +00:00
|
|
|
-i configure
|
2012-08-22 20:48:03 +00:00
|
|
|
ls kBuild/bin/linux.x86/k* tools/linux.x86/bin/* | xargs -n 1 patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2
|
|
|
|
ls kBuild/bin/linux.amd64/k* tools/linux.amd64/bin/* | xargs -n 1 patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2
|
2014-11-29 07:06:47 +00:00
|
|
|
find . -type f -iname '*makefile*' -exec sed -i -e 's/depmod -a/:/g' {} +
|
2014-09-14 09:23:05 +00:00
|
|
|
sed -e 's@"libasound.so.2"@"${alsaLib}/lib/libasound.so.2"@g' -i src/VBox/Main/xml/Settings.cpp src/VBox/Devices/Audio/alsa_stubs.c
|
2009-04-12 21:59:40 +00:00
|
|
|
export USER=nix
|
|
|
|
set +x
|
2012-02-23 22:04:54 +00:00
|
|
|
'';
|
2009-04-12 21:59:40 +00:00
|
|
|
|
2014-11-29 07:09:50 +00:00
|
|
|
patches = optional enableHardening ./hardened.patch;
|
|
|
|
|
2009-04-12 21:59:40 +00:00
|
|
|
configurePhase = ''
|
2012-08-18 14:47:13 +00:00
|
|
|
sourcedir="$(pwd)"
|
2014-11-29 07:09:50 +00:00
|
|
|
cat >> LocalConfig.kmk <<LOCAL_CONFIG
|
virtualbox: Fix extension pack installation.
With hardening, we need to go a bit further rather than just allowing
/nix/store being world-writable. We now use fakeroot to make sure the
VBoxExtPackHelperApp won't moan that the files are not owned by root.
They are, but only outside of the chrooted build process.
Another issue with using fakeroot is that it doesn't seem to cope well
with arguments that contain spaces. That's why I've piped the call into
${stdenv.shell}.
Now, the really gory and confusing part is the introduction of
VBOX_PATH_APP_PRIVATE_ARCH_TOP and the change of VBOX_PATH_APP_PRIVATE.
The VBOX_PATH_APP_PRIVATE_ARCH is *only* for modules and is checked by
the hardened implementation against whether things like VMMR0.r0 or
VBoxVMM.so reside in that directory. As a side note: I admit that the
whole libexec directory is quite polluted with stuff that shouldn't be
there, but for now we've broken enough things and will tear apart the
whole structure at some day in the future[TM].
For the confusing part we have VBOX_PATH_APP_PRIVATE_ARCH_TOP, which
_should_ be the same as VBOX_PATH_APP_PRIVATE_ARCH but unfortunately,
the hardened implementation is checking against this directory (in
IsValidBaseDir) for the extension pack(why!?).
Of course, we could put even that into the libexec directory, somewhat
similar as the official package, but after all, let's at least *try* to
separate things.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-01 02:13:51 +00:00
|
|
|
VBOX_WITH_TESTCASES :=
|
|
|
|
VBOX_WITH_TESTSUITE :=
|
|
|
|
VBOX_WITH_VALIDATIONKIT :=
|
|
|
|
VBOX_WITH_DOCS :=
|
|
|
|
VBOX_WITH_WARNINGS_AS_ERRORS :=
|
|
|
|
|
|
|
|
VBOX_WITH_ORIGIN :=
|
|
|
|
VBOX_PATH_APP_PRIVATE_ARCH_TOP := $out/share/virtualbox
|
|
|
|
VBOX_PATH_APP_PRIVATE_ARCH := $out/libexec/virtualbox
|
|
|
|
VBOX_PATH_SHARED_LIBS := $out/libexec/virtualbox
|
|
|
|
VBOX_WITH_RUNPATH := $out/libexec/virtualbox
|
|
|
|
VBOX_PATH_APP_PRIVATE := $out/share/virtualbox
|
|
|
|
VBOX_PATH_APP_DOCS := $out/doc
|
2014-11-29 07:09:50 +00:00
|
|
|
${optionalString javaBindings ''
|
virtualbox: Fix extension pack installation.
With hardening, we need to go a bit further rather than just allowing
/nix/store being world-writable. We now use fakeroot to make sure the
VBoxExtPackHelperApp won't moan that the files are not owned by root.
They are, but only outside of the chrooted build process.
Another issue with using fakeroot is that it doesn't seem to cope well
with arguments that contain spaces. That's why I've piped the call into
${stdenv.shell}.
Now, the really gory and confusing part is the introduction of
VBOX_PATH_APP_PRIVATE_ARCH_TOP and the change of VBOX_PATH_APP_PRIVATE.
The VBOX_PATH_APP_PRIVATE_ARCH is *only* for modules and is checked by
the hardened implementation against whether things like VMMR0.r0 or
VBoxVMM.so reside in that directory. As a side note: I admit that the
whole libexec directory is quite polluted with stuff that shouldn't be
there, but for now we've broken enough things and will tear apart the
whole structure at some day in the future[TM].
For the confusing part we have VBOX_PATH_APP_PRIVATE_ARCH_TOP, which
_should_ be the same as VBOX_PATH_APP_PRIVATE_ARCH but unfortunately,
the hardened implementation is checking against this directory (in
IsValidBaseDir) for the extension pack(why!?).
Of course, we could put even that into the libexec directory, somewhat
similar as the official package, but after all, let's at least *try* to
separate things.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-01 02:13:51 +00:00
|
|
|
VBOX_JAVA_HOME := ${jdk}
|
2014-11-29 07:09:50 +00:00
|
|
|
''}
|
|
|
|
LOCAL_CONFIG
|
|
|
|
|
2012-03-20 13:54:01 +00:00
|
|
|
./configure --with-qt4-dir=${qt4} \
|
|
|
|
${optionalString (!javaBindings) "--disable-java"} \
|
|
|
|
${optionalString (!pythonBindings) "--disable-python"} \
|
2014-04-17 22:36:41 +00:00
|
|
|
${optionalString (!pulseSupport) "--disable-pulse"} \
|
2014-11-29 07:09:50 +00:00
|
|
|
${optionalString (!enableHardening) "--disable-hardening"} \
|
|
|
|
--disable-kmods --with-mkisofs=${xorriso}/bin/xorrisofs
|
2009-04-12 21:59:40 +00:00
|
|
|
sed -e 's@PKG_CONFIG_PATH=.*@PKG_CONFIG_PATH=${libIDL}/lib/pkgconfig:${glib}/lib/pkgconfig ${libIDL}/bin/libIDL-config-2@' \
|
|
|
|
-i AutoConfig.kmk
|
|
|
|
sed -e 's@arch/x86/@@' \
|
|
|
|
-i Config.kmk
|
2010-11-20 10:41:53 +00:00
|
|
|
substituteInPlace Config.kmk --replace "VBOX_WITH_TESTCASES = 1" "#"
|
2009-04-12 21:59:40 +00:00
|
|
|
'';
|
|
|
|
|
2012-03-02 14:54:14 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-08-17 10:36:43 +00:00
|
|
|
buildPhase = ''
|
2009-04-12 21:59:40 +00:00
|
|
|
source env.sh
|
|
|
|
kmk
|
2012-08-18 14:47:13 +00:00
|
|
|
${forEachModule "modules"}
|
2012-03-02 14:54:14 +00:00
|
|
|
'';
|
|
|
|
|
2009-04-12 21:59:40 +00:00
|
|
|
installPhase = ''
|
2012-03-20 13:54:01 +00:00
|
|
|
libexec=$out/libexec/virtualbox
|
virtualbox: Fix extension pack installation.
With hardening, we need to go a bit further rather than just allowing
/nix/store being world-writable. We now use fakeroot to make sure the
VBoxExtPackHelperApp won't moan that the files are not owned by root.
They are, but only outside of the chrooted build process.
Another issue with using fakeroot is that it doesn't seem to cope well
with arguments that contain spaces. That's why I've piped the call into
${stdenv.shell}.
Now, the really gory and confusing part is the introduction of
VBOX_PATH_APP_PRIVATE_ARCH_TOP and the change of VBOX_PATH_APP_PRIVATE.
The VBOX_PATH_APP_PRIVATE_ARCH is *only* for modules and is checked by
the hardened implementation against whether things like VMMR0.r0 or
VBoxVMM.so reside in that directory. As a side note: I admit that the
whole libexec directory is quite polluted with stuff that shouldn't be
there, but for now we've broken enough things and will tear apart the
whole structure at some day in the future[TM].
For the confusing part we have VBOX_PATH_APP_PRIVATE_ARCH_TOP, which
_should_ be the same as VBOX_PATH_APP_PRIVATE_ARCH but unfortunately,
the hardened implementation is checking against this directory (in
IsValidBaseDir) for the extension pack(why!?).
Of course, we could put even that into the libexec directory, somewhat
similar as the official package, but after all, let's at least *try* to
separate things.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-01 02:13:51 +00:00
|
|
|
share=$out/share/virtualbox
|
2012-08-17 10:36:43 +00:00
|
|
|
|
2009-10-08 12:57:05 +00:00
|
|
|
# Install VirtualBox files
|
2009-04-12 21:59:40 +00:00
|
|
|
cd out/linux.*/release/bin
|
2012-03-20 13:54:01 +00:00
|
|
|
mkdir -p $libexec
|
|
|
|
cp -av * $libexec
|
2012-08-17 10:36:43 +00:00
|
|
|
|
2010-02-18 14:04:22 +00:00
|
|
|
# Install kernel modules
|
2012-08-18 14:47:13 +00:00
|
|
|
${forEachModule "modules_install"}
|
2012-08-17 10:36:43 +00:00
|
|
|
|
2009-10-08 12:57:05 +00:00
|
|
|
# Create wrapper script
|
2012-03-02 14:54:14 +00:00
|
|
|
mkdir -p $out/bin
|
2012-03-20 13:54:01 +00:00
|
|
|
for file in VirtualBox VBoxManage VBoxSDL VBoxBalloonCtrl VBoxBFE VBoxHeadless; do
|
|
|
|
ln -s "$libexec/$file" $out/bin/$file
|
2009-04-14 13:29:19 +00:00
|
|
|
done
|
2012-08-17 10:36:43 +00:00
|
|
|
|
2012-12-12 06:12:46 +00:00
|
|
|
${optionalString enableExtensionPack ''
|
virtualbox: Fix extension pack installation.
With hardening, we need to go a bit further rather than just allowing
/nix/store being world-writable. We now use fakeroot to make sure the
VBoxExtPackHelperApp won't moan that the files are not owned by root.
They are, but only outside of the chrooted build process.
Another issue with using fakeroot is that it doesn't seem to cope well
with arguments that contain spaces. That's why I've piped the call into
${stdenv.shell}.
Now, the really gory and confusing part is the introduction of
VBOX_PATH_APP_PRIVATE_ARCH_TOP and the change of VBOX_PATH_APP_PRIVATE.
The VBOX_PATH_APP_PRIVATE_ARCH is *only* for modules and is checked by
the hardened implementation against whether things like VMMR0.r0 or
VBoxVMM.so reside in that directory. As a side note: I admit that the
whole libexec directory is quite polluted with stuff that shouldn't be
there, but for now we've broken enough things and will tear apart the
whole structure at some day in the future[TM].
For the confusing part we have VBOX_PATH_APP_PRIVATE_ARCH_TOP, which
_should_ be the same as VBOX_PATH_APP_PRIVATE_ARCH but unfortunately,
the hardened implementation is checking against this directory (in
IsValidBaseDir) for the extension pack(why!?).
Of course, we could put even that into the libexec directory, somewhat
similar as the official package, but after all, let's at least *try* to
separate things.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-01 02:13:51 +00:00
|
|
|
mkdir -p "$share"
|
|
|
|
"${fakeroot}/bin/fakeroot" "${stdenv.shell}" <<EXTHELPER
|
2012-12-12 06:12:46 +00:00
|
|
|
"$libexec/VBoxExtPackHelperApp" install \
|
virtualbox: Fix extension pack installation.
With hardening, we need to go a bit further rather than just allowing
/nix/store being world-writable. We now use fakeroot to make sure the
VBoxExtPackHelperApp won't moan that the files are not owned by root.
They are, but only outside of the chrooted build process.
Another issue with using fakeroot is that it doesn't seem to cope well
with arguments that contain spaces. That's why I've piped the call into
${stdenv.shell}.
Now, the really gory and confusing part is the introduction of
VBOX_PATH_APP_PRIVATE_ARCH_TOP and the change of VBOX_PATH_APP_PRIVATE.
The VBOX_PATH_APP_PRIVATE_ARCH is *only* for modules and is checked by
the hardened implementation against whether things like VMMR0.r0 or
VBoxVMM.so reside in that directory. As a side note: I admit that the
whole libexec directory is quite polluted with stuff that shouldn't be
there, but for now we've broken enough things and will tear apart the
whole structure at some day in the future[TM].
For the confusing part we have VBOX_PATH_APP_PRIVATE_ARCH_TOP, which
_should_ be the same as VBOX_PATH_APP_PRIVATE_ARCH but unfortunately,
the hardened implementation is checking against this directory (in
IsValidBaseDir) for the extension pack(why!?).
Of course, we could put even that into the libexec directory, somewhat
similar as the official package, but after all, let's at least *try* to
separate things.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-01 02:13:51 +00:00
|
|
|
--base-dir "$share/ExtensionPacks" \
|
|
|
|
--cert-dir "$share/ExtPackCertificates" \
|
2012-12-12 06:12:46 +00:00
|
|
|
--name "Oracle VM VirtualBox Extension Pack" \
|
2013-02-08 06:02:32 +00:00
|
|
|
--tarball "${extensionPack}" \
|
2012-12-12 06:12:46 +00:00
|
|
|
--sha-256 "${extensionPack.outputHash}"
|
virtualbox: Fix extension pack installation.
With hardening, we need to go a bit further rather than just allowing
/nix/store being world-writable. We now use fakeroot to make sure the
VBoxExtPackHelperApp won't moan that the files are not owned by root.
They are, but only outside of the chrooted build process.
Another issue with using fakeroot is that it doesn't seem to cope well
with arguments that contain spaces. That's why I've piped the call into
${stdenv.shell}.
Now, the really gory and confusing part is the introduction of
VBOX_PATH_APP_PRIVATE_ARCH_TOP and the change of VBOX_PATH_APP_PRIVATE.
The VBOX_PATH_APP_PRIVATE_ARCH is *only* for modules and is checked by
the hardened implementation against whether things like VMMR0.r0 or
VBoxVMM.so reside in that directory. As a side note: I admit that the
whole libexec directory is quite polluted with stuff that shouldn't be
there, but for now we've broken enough things and will tear apart the
whole structure at some day in the future[TM].
For the confusing part we have VBOX_PATH_APP_PRIVATE_ARCH_TOP, which
_should_ be the same as VBOX_PATH_APP_PRIVATE_ARCH but unfortunately,
the hardened implementation is checking against this directory (in
IsValidBaseDir) for the extension pack(why!?).
Of course, we could put even that into the libexec directory, somewhat
similar as the official package, but after all, let's at least *try* to
separate things.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-01 02:13:51 +00:00
|
|
|
EXTHELPER
|
2012-12-12 06:12:46 +00:00
|
|
|
''}
|
|
|
|
|
2009-10-08 12:57:05 +00:00
|
|
|
# Create and fix desktop item
|
2012-03-02 14:54:14 +00:00
|
|
|
mkdir -p $out/share/applications
|
2012-03-20 13:54:01 +00:00
|
|
|
sed -i -e "s|Icon=VBox|Icon=$libexec/VBox.png|" $libexec/virtualbox.desktop
|
|
|
|
ln -sfv $libexec/virtualbox.desktop $out/share/applications
|
2012-10-16 17:35:59 +00:00
|
|
|
# Icons
|
|
|
|
mkdir -p $out/share/icons/hicolor
|
|
|
|
for size in `ls -1 $libexec/icons`; do
|
|
|
|
mkdir -p $out/share/icons/hicolor/$size/apps
|
2012-10-17 12:11:08 +00:00
|
|
|
ln -s $libexec/icons/$size/*.png $out/share/icons/hicolor/$size/apps
|
2012-10-16 17:35:59 +00:00
|
|
|
done
|
2009-04-12 21:59:40 +00:00
|
|
|
'';
|
2012-08-17 10:36:43 +00:00
|
|
|
|
2013-06-23 12:35:33 +00:00
|
|
|
passthru = { inherit version; /* for guest additions */ };
|
|
|
|
|
2009-04-12 21:59:40 +00:00
|
|
|
meta = {
|
|
|
|
description = "PC emulator";
|
|
|
|
homepage = http://www.virtualbox.org/;
|
2009-09-11 12:24:32 +00:00
|
|
|
maintainers = [ lib.maintainers.sander ];
|
2009-09-16 14:56:53 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2009-04-12 21:59:40 +00:00
|
|
|
};
|
|
|
|
}
|