lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gnome-shell: use src.nix

+12 -7
+1 -1
maintainers/scripts/gnome.sh
··· 111 111 done 112 112 echo "Chosen ${ext_pref}, hash is ${sha256}" >&2 113 113 114 - src="# Autogenerated by maintainers/scripts/gnome-latest.sh 114 + src="# Autogenerated by maintainers/scripts/gnome.sh update 115 115 116 116 fetchurl: { 117 117 name = \"${project}-${version}\";
+1 -6
pkgs/desktops/gnome-3/3.16/core/gnome-shell/default.nix
··· 8 8 # http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.10.2.1.ebuild?revision=1.3&view=markup 9 9 10 10 stdenv.mkDerivation rec { 11 - name = "gnome-shell-${gnome3.version}.1"; 12 - 13 - src = fetchurl { 14 - url = "mirror://gnome/sources/gnome-shell/${gnome3.version}/${name}.tar.xz"; 15 - sha256 = "00gjdfaznpnspb4jmjc19axiz6snd9drvqmzpq4sw0xh1ysgpncv"; 16 - }; 11 + inherit (import ./src.nix fetchurl) name src; 17 12 18 13 # Needed to find /etc/NetworkManager/VPN 19 14 configureFlags = [ "--sysconfdir=/etc" ];
+10
pkgs/desktops/gnome-3/3.16/core/gnome-shell/src.nix
··· 1 + # Autogenerated by maintainers/scripts/gnome.sh update 2 + 3 + fetchurl: { 4 + name = "gnome-shell-3.16.1"; 5 + 6 + src = fetchurl { 7 + url = mirror://gnome/sources/gnome-shell/3.16/gnome-shell-3.16.1.tar.xz; 8 + sha256 = "9bd9fbb40fb003ae09bebfe29d5b6a569b1fbb4a81c92ac9bada5efb956bf201"; 9 + }; 10 + }