
Well, what a mess! Finally it's building successfully and even managed to do some cleanups. Probably most people might be wondering why I'm doing a port of Unity to Nix while I personally don't use and/or even like it. The main reason is because I tried to introduce someone to Nix and NixOS who actively uses Unity and doesn't want to switch to something more sane^H^H^H^Hlightweight. So let me introduce him: @gradel He will be the new maintainer of the Unity desktop packages in Nix and I'm going to mentor him during this process. Enough about introduction, there still is a lot of work to do: * Improve directory structure of pkgs/desktop/unity. * Add more packages to propagatedBuildInputs to keep things DRY. * Maybe clean up my GIR compiler patch. * Add an update script to update all that stuff at once. * Separate the ugly sed hacks into nice clean patches. * Check build warnings and maybe fix them instead of removing -Werror. * Add missing dependencies. * Add missing meta information (I pretty much omitted about all of them). * The packages ibus, libgee and PackageKit obviously don't belong to unity, move them to the right locations. And the biggest TODO: Actually *test* it, as it is only UnityCore, I presume there is quite a bunch of packages missing at this point. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
41 lines
1.4 KiB
Nix
41 lines
1.4 KiB
Nix
{ stdenv, fetchurl, cmake, pkgconfig, gettext, compiz, nux, bamf, dee, glib
|
|
, libdbusmenu, x11, gnome, libindicator, atk, at_spi2_atk, dbus_glib, gtk2, gtk3
|
|
, libsigcxx, json_glib, libnotify, libzeitgeist, libunity, libunityMisc
|
|
, libXdamage, libXdmcp, libXau, libxml2, libxslt, libpthreadstubs, glibmm
|
|
, libdrm, mesa, boost
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "unity-${version}";
|
|
version = "6.12.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://launchpad.net/unity/6.0/${version}/+download/${name}.tar.gz";
|
|
sha256 = "1h8qch4339pyyiikv0f0jzfhysmknfcazy26pbf1lya5ih62yhag";
|
|
};
|
|
|
|
prePatch = ''
|
|
find . -name "CMakeLists.txt" -exec sed -i 's/-Werror *//g' '{}' +
|
|
sed -e '/notify_notification_new(/,/nullptr)/s/nullptr/&, nullptr/' \
|
|
-e 's/\(notify_notification_set_\)image\(_from_pixbuf\)/\1icon\2/' \
|
|
-e 's/\(notify_notification_set_hint\) *(.*/\/* XXX: & *\//' \
|
|
-i launcher/DeviceNotificationDisplayImp.cpp
|
|
'';
|
|
|
|
patches = [ ./disable-pointerbarrier.patch ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
cmakeFlags = [
|
|
"-DGSETTINGS_LOCALINSTALL=1"
|
|
"-DCMAKE_MODULE_PATH=${compiz}/share/cmake-2.8"
|
|
];
|
|
|
|
buildInputs = [
|
|
cmake pkgconfig gettext compiz nux bamf dee glib libdbusmenu x11
|
|
gnome.startupnotification libindicator atk at_spi2_atk dbus_glib gtk2 gtk3
|
|
libsigcxx json_glib libnotify libzeitgeist libunity libunityMisc libXdamage
|
|
libXdmcp libXau libxml2 libxslt libpthreadstubs glibmm libdrm mesa boost
|
|
];
|
|
}
|