
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>
27 lines
876 B
Nix
27 lines
876 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, glib, gobjectIntrospection
|
|
, gdk_pixbuf, libwnck3, json_glib, libsoup, packagekit, polkit, telepathy_glib
|
|
, libnotify, libunity, indicatorMessages, geoclue, libdbusmenu, gtk2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libunity-webapps-${version}";
|
|
version = "2.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://launchpad.net/libunity-webapps/2.4/${version}"
|
|
+ "/+download/unity_webapps-2.4.3.tar.gz";
|
|
sha256 = "1jr0ci7azp6x4p7gnq5pfvpnrawdr3bdidahl52qvglf49127i5y";
|
|
};
|
|
|
|
prePatch = ''
|
|
sed -i -e 's/notify_notification_new[^)]*/&, NULL/' \
|
|
src/context-daemon/unity-webapps-notification-context.c
|
|
'';
|
|
|
|
buildInputs = [
|
|
intltool pkgconfig glib gobjectIntrospection gdk_pixbuf libwnck3 json_glib
|
|
libsoup packagekit polkit telepathy_glib libnotify libunity
|
|
indicatorMessages geoclue libdbusmenu gtk2
|
|
];
|
|
}
|