summary refs log tree commit diff
path: root/pkgs/applications/graphics
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/graphics
parent6621358e6d439e38fae5101d6c7e133029affec2 (diff)
downloadnixpkgs-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar
nixpkgs-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.gz
nixpkgs-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.bz2
nixpkgs-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.lz
nixpkgs-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.xz
nixpkgs-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.zst
nixpkgs-a211d942913d9c4071771f3ffb4c9e1000043d6a.zip
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/graphics')
-rw-r--r--pkgs/applications/graphics/cyan/default.nix4
-rw-r--r--pkgs/applications/graphics/fondo/default.nix4
-rw-r--r--pkgs/applications/graphics/foxotron/default.nix4
-rw-r--r--pkgs/applications/graphics/geeqie/default.nix4
-rw-r--r--pkgs/applications/graphics/ideogram/default.nix4
-rw-r--r--pkgs/applications/graphics/mangareader/default.nix4
6 files changed, 6 insertions, 18 deletions
diff --git a/pkgs/applications/graphics/cyan/default.nix b/pkgs/applications/graphics/cyan/default.nix
index 2e59c6716b7..22fab6cc8d9 100644
--- a/pkgs/applications/graphics/cyan/default.nix
+++ b/pkgs/applications/graphics/cyan/default.nix
@@ -27,9 +27,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ imagemagick ];
 
-  passthru.updateScript = nix-update-script {
-    attrPath = pname;
-  };
+  passthru.updateScript = nix-update-script { };
 
   meta = with lib; {
     description = "Image viewer and converter, designed for prepress (print) work";
diff --git a/pkgs/applications/graphics/fondo/default.nix b/pkgs/applications/graphics/fondo/default.nix
index c8d6fc6030d..f3854b4c698 100644
--- a/pkgs/applications/graphics/fondo/default.nix
+++ b/pkgs/applications/graphics/fondo/default.nix
@@ -58,9 +58,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/calo001/fondo";
diff --git a/pkgs/applications/graphics/foxotron/default.nix b/pkgs/applications/graphics/foxotron/default.nix
index 2bcc4375112..e8fd0364808 100644
--- a/pkgs/applications/graphics/foxotron/default.nix
+++ b/pkgs/applications/graphics/foxotron/default.nix
@@ -60,9 +60,7 @@ stdenv.mkDerivation rec {
   '';
 
   passthru = {
-    updateScript = nix-update-script {
-      attrPath = pname;
-    };
+    updateScript = nix-update-script { };
   };
 
   meta = with lib; {
diff --git a/pkgs/applications/graphics/geeqie/default.nix b/pkgs/applications/graphics/geeqie/default.nix
index ddc2b451b24..7d9a039a5b0 100644
--- a/pkgs/applications/graphics/geeqie/default.nix
+++ b/pkgs/applications/graphics/geeqie/default.nix
@@ -49,9 +49,7 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   passthru = {
-    updateScript = nix-update-script {
-      attrPath = pname;
-    };
+    updateScript = nix-update-script { };
   };
 
   meta = with lib; {
diff --git a/pkgs/applications/graphics/ideogram/default.nix b/pkgs/applications/graphics/ideogram/default.nix
index 9c854d9ffbf..12706d6d36f 100644
--- a/pkgs/applications/graphics/ideogram/default.nix
+++ b/pkgs/applications/graphics/ideogram/default.nix
@@ -51,9 +51,7 @@ stdenv.mkDerivation rec {
   '';
 
   passthru = {
-    updateScript = nix-update-script {
-      attrPath = pname;
-    };
+    updateScript = nix-update-script { };
   };
 
   meta = with lib; {
diff --git a/pkgs/applications/graphics/mangareader/default.nix b/pkgs/applications/graphics/mangareader/default.nix
index 5ae270cca8c..81073c05115 100644
--- a/pkgs/applications/graphics/mangareader/default.nix
+++ b/pkgs/applications/graphics/mangareader/default.nix
@@ -41,9 +41,7 @@ stdenv.mkDerivation rec {
     kconfigwidgets
   ];
 
-  passthru.updateScript = nix-update-script {
-    attrPath = pname;
-  };
+  passthru.updateScript = nix-update-script { };
 
   meta = with lib; {
     description = "Qt manga reader for local files";