Unverified Commit e1c234e5 authored by seth's avatar seth Committed by GitHub
Browse files

treewide: add updateScript to gnome circle packages (#367823)

* decoder: remove gnome circle team from maintainers

This was mistakenly placed here instead of in `gnome-decoder`

* gnome-decoder: add gnome circle team to maintainers

* treewide: add updateScript to gnome circle packages
parent fd313286
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
, appstream-glib
, desktop-file-utils
, glycin-loaders
, nix-update-script
}:

clangStdenv.mkDerivation rec {
@@ -80,12 +81,16 @@ clangStdenv.mkDerivation rec {
    gst-plugins-rs # for gtk4paintablesink
  ];

  passthru = {
    updateScript = nix-update-script { };
  };

  meta = with lib; {
    description = "Scan and Generate QR Codes";
    homepage = "https://gitlab.gnome.org/World/decoder";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    mainProgram = "decoder";
    maintainers = with maintainers; [ zendo ];
    maintainers = with maintainers; [ zendo ] ++ lib.teams.gnome-circle.members;
  };
}
+5 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@
  gdk-pixbuf,
  libadwaita,
  Foundation,
  nix-update-script,
}:

stdenv.mkDerivation (finalAttrs: {
@@ -70,6 +71,10 @@ stdenv.mkDerivation (finalAttrs: {
      Foundation
    ];

  passthru = {
    updateScript = nix-update-script { };
  };

  meta = with lib; {
    description = "Censor private information";
    homepage = "https://gitlab.gnome.org/World/obfuscate";
+5 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@
  gst_all_1,
  libadwaita,
  dbus,
  nix-update-script,
}:

stdenv.mkDerivation rec {
@@ -72,6 +73,10 @@ stdenv.mkDerivation rec {
      gst-libav
    ]);

  passthru = {
    updateScript = nix-update-script { };
  };

  meta = {
    homepage = "https://gitlab.gnome.org/World/amberol";
    description = "Small and simple sound and music player";
+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
  webkitgtk_6_0,
  texliveMedium,
  shared-mime-info,
  nix-update-script,
}:

let
@@ -98,6 +99,7 @@ python3Packages.buildPythonApplication {

  passthru = {
    inherit reveal-js;
    updateScript = nix-update-script { };
  };

  meta = {
+5 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
, wayland
, zbar
, glycin-loaders
, nix-update-script
}:

stdenv.mkDerivation rec {
@@ -80,6 +81,10 @@ stdenv.mkDerivation rec {
    zbar
  ];

  passthru = {
    updateScript = nix-update-script { };
  };

  meta = {
    description = "Two-factor authentication code generator for GNOME";
    mainProgram = "authenticator";
Loading