summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-12-25 17:11:14 -0500
committerfigsoda <figsoda@pm.me>2022-12-26 12:39:21 -0500
commita211d942913d9c4071771f3ffb4c9e1000043d6a (patch)
tree4a01b857b5d55f02d857b977e4f35b9f4fdf1029 /pkgs/applications/networking
parent6621358e6d439e38fae5101d6c7e133029affec2 (diff)
treewide: remove attrPath from nix-update-script calls
after https://github.com/Mic92/nix-update/pull/120 and https://github.com/NixOS/nixpkgs/pull/207703, `attrPath` can now be omitted when using `nix-update-script`
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/browsers/eolie/default.nix4
-rw-r--r--pkgs/applications/networking/browsers/ephemeral/default.nix4
-rw-r--r--pkgs/applications/networking/browsers/lagrange/default.nix4
-rw-r--r--pkgs/applications/networking/ftp/taxi/default.nix4
-rw-r--r--pkgs/applications/networking/instant-messengers/fractal/default.nix4
-rw-r--r--pkgs/applications/networking/p2p/torrential/default.nix4
-rw-r--r--pkgs/applications/networking/weather/meteo/default.nix4
7 files changed, 7 insertions, 21 deletions
diff --git a/pkgs/applications/networking/browsers/eolie/default.nix b/pkgs/applications/networking/browsers/eolie/default.nix
index 9a8156e0cf32..89f02114f42d 100644
--- a/pkgs/applications/networking/browsers/eolie/default.nix
+++ b/pkgs/applications/networking/browsers/eolie/default.nix
@@ -65,9 +65,7 @@ python3.pkgs.buildPythonApplication rec {
'';
passthru = {
- updateScript = nix-update-script {
- attrPath = pname;
- };
+ updateScript = nix-update-script { };
};
strictDeps = false;
diff --git a/pkgs/applications/networking/browsers/ephemeral/default.nix b/pkgs/applications/networking/browsers/ephemeral/default.nix
index 7ff3b843bc22..4002d52715b3 100644
--- a/pkgs/applications/networking/browsers/ephemeral/default.nix
+++ b/pkgs/applications/networking/browsers/ephemeral/default.nix
@@ -56,9 +56,7 @@ stdenv.mkDerivation rec {
'';
passthru = {
- updateScript = nix-update-script {
- attrPath = pname;
- };
+ updateScript = nix-update-script { };
};
meta = with lib; {
diff --git a/pkgs/applications/networking/browsers/lagrange/default.nix b/pkgs/applications/networking/browsers/lagrange/default.nix
index 989903329778..a46ea32cebf4 100644
--- a/pkgs/applications/networking/browsers/lagrange/default.nix
+++ b/pkgs/applications/networking/browsers/lagrange/default.nix
@@ -50,9 +50,7 @@ stdenv.mkDerivation (finalAttrs: {
'';
passthru = {
- updateScript = nix-update-script {
- attrPath = finalAttrs.pname;
- };
+ updateScript = nix-update-script { };
};
meta = with lib; {
diff --git a/pkgs/applications/networking/ftp/taxi/default.nix b/pkgs/applications/networking/ftp/taxi/default.nix
index 411031f605ed..75e3b43a1a27 100644
--- a/pkgs/applications/networking/ftp/taxi/default.nix
+++ b/pkgs/applications/networking/ftp/taxi/default.nix
@@ -52,9 +52,7 @@ stdenv.mkDerivation rec {
patchShebangs meson/post_install.py
'';
- passthru.updateScript = nix-update-script {
- attrPath = pname;
- };
+ passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://github.com/Alecaddd/taxi";
diff --git a/pkgs/applications/networking/instant-messengers/fractal/default.nix b/pkgs/applications/networking/instant-messengers/fractal/default.nix
index 67762c63f72f..b5c0db75a743 100644
--- a/pkgs/applications/networking/instant-messengers/fractal/default.nix
+++ b/pkgs/applications/networking/instant-messengers/fractal/default.nix
@@ -97,9 +97,7 @@ stdenv.mkDerivation rec {
'';
passthru = {
- updateScript = nix-update-script {
- attrPath = pname;
- };
+ updateScript = nix-update-script { };
};
meta = with lib; {
diff --git a/pkgs/applications/networking/p2p/torrential/default.nix b/pkgs/applications/networking/p2p/torrential/default.nix
index 50dd38d8d246..4cf4e1becf05 100644
--- a/pkgs/applications/networking/p2p/torrential/default.nix
+++ b/pkgs/applications/networking/p2p/torrential/default.nix
@@ -66,9 +66,7 @@ stdenv.mkDerivation rec {
'';
passthru = {
- updateScript = nix-update-script {
- attrPath = pname;
- };
+ updateScript = nix-update-script { };
};
meta = with lib; {
diff --git a/pkgs/applications/networking/weather/meteo/default.nix b/pkgs/applications/networking/weather/meteo/default.nix
index 8acd862053ad..c9f194a5a864 100644
--- a/pkgs/applications/networking/weather/meteo/default.nix
+++ b/pkgs/applications/networking/weather/meteo/default.nix
@@ -55,9 +55,7 @@ stdenv.mkDerivation rec {
'';
passthru = {
- updateScript = nix-update-script {
- attrPath = pname;
- };
+ updateScript = nix-update-script { };
};
meta = with lib; {