Merge pull request #2315 from lethalman/gnome3

gedit, libmediaart, fix xdg-user-dirs, enable GI in grilo, prioritize nautilus mimetype, seahorse, gnome-music, glade, gnome-documents
This commit is contained in:
Domen Kožar
2014-04-24 01:16:54 +02:00
25 changed files with 538 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libxslt, docbook_xsl }:
{ stdenv, fetchurl, libxslt, docbook_xsl, makeWrapper }:
stdenv.mkDerivation rec {
name = "xdg-user-dirs-0.15";
@@ -8,7 +8,12 @@ stdenv.mkDerivation rec {
sha256 = "20b4a751f41d0554bce3e0ce5e8d934be98cc62d48f0b90a894c3e1916552786";
};
buildInputs = [ libxslt docbook_xsl ];
buildInputs = [ libxslt docbook_xsl makeWrapper ];
preFixup = ''
wrapProgram "$out/bin/xdg-user-dirs-update" \
--prefix XDG_CONFIG_DIRS : "$out/etc/xdg"
'';
meta = with stdenv.lib; {
homepage = http://freedesktop.org/wiki/Software/xdg-user-dirs;