Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gnomeExtensions: refactor pnames and derivations headers #86430

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/extensions/arc-menu/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitLab, glib, gettext, substituteAll, gnome-menus }:

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

src = fetchFromGitLab {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/desktops/gnome-3/extensions/caffeine/default.nix
@@ -1,8 +1,8 @@
{ stdenv, fetchFromGitHub, glib, gettext, bash, gnome3 }:

stdenv.mkDerivation rec {
pname = "gnome-shell-extension-caffeine-unstable";
version = "2020-03-13";
pname = "gnome-shell-extension-caffeine";
version = "unstable-2020-03-13";

src = fetchFromGitHub {
owner = "eonpatapon";
Expand Down
@@ -1,9 +1,10 @@
{stdenv, fetchurl, cmake, ninja, jq, python3, gnome3, wrapGAppsHook}:
{ stdenv, fetchurl, cmake, ninja, jq, python3, gnome3, wrapGAppsHook }:

let
version = "10.1";

inherit (python3.pkgs) python pygobject3 requests;

in stdenv.mkDerivation rec {
pname = "chrome-gnome-shell";
inherit version;
Expand Down
10 changes: 3 additions & 7 deletions pkgs/desktops/gnome-3/extensions/dash-to-dock/default.nix
@@ -1,12 +1,8 @@
{ stdenv
, fetchFromGitHub
, glib
, gettext
}:
{ stdenv , fetchFromGitHub , glib , gettext }:

stdenv.mkDerivation rec {
pname = "gnome-shell-dash-to-dock-unstable";
version = "2020-04-20";
pname = "gnome-shell-extension-dash-to-dock";
version = "unstable-2020-04-20";

src = fetchFromGitHub {
owner = "micheleg";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/extensions/dash-to-panel/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, glib, gettext }:

stdenv.mkDerivation rec {
pname = "gnome-shell-dash-to-panel";
pname = "gnome-shell-extension-dash-to-panel";
version = "31";

src = fetchFromGitHub {
Expand Down
5 changes: 3 additions & 2 deletions pkgs/desktops/gnome-3/extensions/gsconnect/default.nix
@@ -1,9 +1,10 @@
{ stdenv, fetchFromGitHub, substituteAll, python3, openssl, gsound
, meson, ninja, libxml2, pkgconfig, gobject-introspection, wrapGAppsHook
, glib, gtk3, at-spi2-core, upower, openssh, gnome3, gjs }:
, glib, gtk3, at-spi2-core, upower, openssh, gnome3, gjs
}:

stdenv.mkDerivation rec {
pname = "gnome-shell-gsconnect";
pname = "gnome-shell-extension-gsconnect";
version = "35";

src = fetchFromGitHub {
Expand Down
2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/extensions/impatience/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, glib }:

stdenv.mkDerivation rec {
pname = "gnome-shell-impatience";
pname = "gnome-shell-extension-impatience";
version = "unstable-2019-09-23";

src = fetchFromGitHub {
Expand Down
@@ -1,11 +1,8 @@
{ stdenv
, fetchFromGitHub
, gnome3
}:
{ stdenv , fetchFromGitHub , gnome3 }:

stdenv.mkDerivation rec {
pname = "gnome-shell-extension-mpris-indicator-button-unstable";
version = "2020-03-21";
pname = "gnome-shell-extension-mpris-indicator-button";
version = "unstable-2020-03-21";

src = fetchFromGitHub {
owner = "JasonLG1979";
Expand Down
@@ -1,9 +1,4 @@
{ stdenv
, substituteAll
, fetchFromGitHub
, libpulseaudio
, python3
}:
{ stdenv , substituteAll , fetchFromGitHub , libpulseaudio , python3 }:

stdenv.mkDerivation rec {
pname = "gnome-shell-extension-sound-output-device-chooser";
Expand Down
@@ -1,7 +1,7 @@
{ stdenv, substituteAll, fetchFromGitHub, glib, glib-networking, libgtop, gnome3 }:

stdenv.mkDerivation rec {
pname = "gnome-shell-system-monitor";
pname = "gnome-shell-extension-system-monitor";
version = "38";

src = fetchFromGitHub {
Expand Down
2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/extensions/tilingnome/default.nix
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchFromGitHub, glib, gnome3 }:

stdenv.mkDerivation rec {
pname = "gnome-shell-extension-tilingnome-unstable";
pname = "gnome-shell-extension-tilingnome";
version = "unstable-2019-09-19";

src = fetchFromGitHub {
Expand Down