gnome3: fix problems from auto-moving src.nix to default.nix

This commit is contained in:
Jan Tojnar 2018-02-21 03:01:18 +01:00
parent 546e7669b2
commit 61a048a8d7
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 2 additions and 5 deletions

View File

@ -20,10 +20,6 @@ in stdenv.mkDerivation rec {
sha256 = "e5a87f2f838d981db9823352b90b2ce2f40d24d31ed9f062dccfa41b820e0b1c";
};
passthru = {
updateScript = gnome3.updateScript { packageName = "gnome-shell"; attrPath = "gnome3.gnome-shell"; };
};
# Needed to find /etc/NetworkManager/VPN
mesonFlags = [ "--sysconfdir=/etc" ];
@ -80,6 +76,7 @@ in stdenv.mkDerivation rec {
passthru = {
mozillaPlugin = "/lib/mozilla/plugins";
updateScript = gnome3.updateScript { packageName = "gnome-shell"; attrPath = "gnome3.gnome-shell"; };
};
meta = with stdenv.lib; {

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, gtkmm, glibmm, gtksourceview }:
{ stdenv, fetchurl, pkgconfig, gtkmm, glibmm, gtksourceview, gnome3 }:
stdenv.mkDerivation rec {
name = "gtksourceviewmm-${version}";