Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 67fc029df23c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e879fdedf99d
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Mar 8, 2020

  1. Copy the full SHA
    8b6b010 View commit details
  2. gnomeExtensions.caffeine: mark as broken

    Unmaintained according to upstream.
    hedning committed Mar 8, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b61716a View commit details
  3. gnomeExtensions.night-theme-switcher: 2.1 -> 19

    Is now hosted on gitlab.
    hedning committed Mar 8, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e879fde View commit details
6 changes: 3 additions & 3 deletions pkgs/desktops/gnome-3/extensions/arc-menu/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "gnome-shell-arc-menu";
version = "33";
version = "43";

src = fetchFromGitLab {
owner = "LinxGem33";
repo = "Arc-Menu";
rev = "v${version}-Stable";
sha256 = "0ncb19jlwy2y9jcj8g6cdbasdv6n7hm96qv9l251z6qgrmg28x4z";
sha256 = "1rspl89bxqy0wla8cj0h1d29gp38xg1vmvhc1qg7bl46ank4yp5q";
};

patches = [
@@ -28,6 +28,6 @@ stdenv.mkDerivation rec {
description = "Gnome shell extension designed to replace the standard menu found in Gnome 3";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dkabot ];
homepage = https://gitlab.com/LinxGem33/Arc-Menu;
homepage = "https://gitlab.com/LinxGem33/Arc-Menu";
};
}
4 changes: 3 additions & 1 deletion pkgs/desktops/gnome-3/extensions/caffeine/default.nix
Original file line number Diff line number Diff line change
@@ -31,6 +31,8 @@ stdenv.mkDerivation rec {
description = "Fill the cup to inhibit auto suspend and screensaver";
license = licenses.gpl2;
maintainers = with maintainers; [ eperuffo ];
homepage = https://github.com/eonpatapon/gnome-shell-extension-caffeine;
homepage = "https://github.com/eonpatapon/gnome-shell-extension-caffeine";
# No longer maintained
broken = versionAtLeast gnome3.gnome-shell.version "3.36";
};
}
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{ stdenv, fetchgit }:
{ stdenv, fetchFromGitLab }:

stdenv.mkDerivation rec {
pname = "gnome-shell-extension-night-theme-switcher";
version = "2.1";
version = "19";

src = fetchgit {
url = "https://git.romainvigier.fr/Romain/nightthemeswitcher-gnome-shell-extension";
src = fetchFromGitLab {
owner = "rmnvgr";
repo = "nightthemeswitcher-gnome-shell-extension";
rev = "v${version}";
sha256 = "1md44vmc83cp35riszhdvysnvl8pmkcpf5j6n4i2b3wwcjwxqwfy";
sha256 = "1ll0yf1skf51wa10mlrajd1dy459w33kx0i3vhfcx2pdk7mw5a3c";
};

makeFlags = [ "GSEXT_DIR_LOCAL=${placeholder "out"}/share/gnome-shell/extensions" ];
@@ -16,6 +17,6 @@ stdenv.mkDerivation rec {
description = "Automatically change the GTK theme to dark variant when Night Light activates";
license = licenses.gpl3;
maintainers = with maintainers; [ jonafato ];
homepage = https://git.romainvigier.fr/Romain/nightthemeswitcher-gnome-shell-extension;
homepage = "https://gitlab.com/rmnvgr/nightthemeswitcher-gnome-shell-extension/";
};
}