Add gnome3.nautilus and remove gnome2.nautilus (didn't compile)

Some icons are still missing (and theme), didn't find a way to fix that.
This commit is contained in:
Domen Kožar
2014-01-10 01:45:34 +01:00
parent 527aadf5ee
commit d33e5eadd0
6 changed files with 50 additions and 12 deletions
@@ -0,0 +1,19 @@
{ stdenv, fetchurl, expat, zlib, boost }:
stdenv.mkDerivation rec {
name = "exempi-2.2.1";
src = fetchurl {
url = "http://libopenraw.freedesktop.org/download/${name}.tar.bz2";
sha256 = "00d6gycl0wcyd3c71y0jp033a64z203rq0p0y07aig0s0j0477kc";
};
configureFlags = [ "--with-boost=${boost}" ];
buildInputs = [ expat zlib boost ];
meta = with stdenv.lib; {
platforms = platforms.linux;
license = licenses.bsd3;
};
}