treewide: remove attrPath from nix-update-script calls

figsoda d458ad1a 37754ea6

+7 -22
+1 -3
pkgs/applications/file-managers/portfolio-filemanager/default.nix
··· 67 67 ''; 68 68 69 69 passthru = { 70 - updateScript = nix-update-script { 71 - attrPath = "portfolio-filemanager"; 72 - }; 70 + updateScript = nix-update-script { }; 73 71 }; 74 72 75 73 meta = with lib; {
+1 -3
pkgs/applications/graphics/komikku/default.nix
··· 81 81 ''; 82 82 83 83 passthru = { 84 - updateScript = nix-update-script { 85 - attrPath = "komikku"; 86 - }; 84 + updateScript = nix-update-script { }; 87 85 }; 88 86 89 87 meta = with lib; {
+1 -3
pkgs/applications/misc/dialect/default.nix
··· 70 70 # handle setup hooks better 71 71 strictDeps = false; 72 72 73 - passthru.updateScript = nix-update-script { 74 - attrPath = pname; 75 - }; 73 + passthru.updateScript = nix-update-script { }; 76 74 77 75 meta = with lib; { 78 76 homepage = "https://github.com/dialect-app/dialect";
-1
pkgs/applications/misc/organicmaps/default.nix
··· 67 67 68 68 passthru = { 69 69 updateScript = nix-update-script { 70 - attrPath = pname; 71 70 extraArgs = [ "-vr" "(.*)-android" ]; 72 71 }; 73 72 };
+1 -3
pkgs/applications/misc/tuba/default.nix
··· 66 66 ]); 67 67 68 68 passthru = { 69 - updateScript = nix-update-script { 70 - attrPath = "tuba"; 71 - }; 69 + updateScript = nix-update-script { }; 72 70 }; 73 71 74 72 meta = with lib; {
+1 -3
pkgs/development/tools/lv_img_conv/default.nix
··· 52 52 makeWrapper ${nodePackages.ts-node}/bin/ts-node $out/bin/lv_img_conv --add-flags $out/lib/node_modules/lv_img_conv/lib/cli.ts 53 53 ''; 54 54 55 - passthru.updateScript = nix-update-script { 56 - attrPath = pname; 57 - }; 55 + passthru.updateScript = nix-update-script { }; 58 56 59 57 meta = with lib; { 60 58 changelog = "https://github.com/lvgl/lv_img_conv/releases/tag/v${version}";
+1 -3
pkgs/tools/admin/ejson2env/default.nix
··· 19 19 "-X main.version=${version}" 20 20 ]; 21 21 22 - passthru.updateScript = nix-update-script { 23 - attrPath = pname; 24 - }; 22 + passthru.updateScript = nix-update-script { }; 25 23 26 24 meta = with lib; { 27 25 description = "A tool to simplify storing secrets that should be accessible in the shell environment in your git repo.";
+1 -3
pkgs/tools/admin/gimme-aws-creds/default.nix
··· 93 93 94 94 passthru = { 95 95 inherit python; 96 - updateScript = nix-update-script { 97 - attrPath = pname; 98 - }; 96 + updateScript = nix-update-script { }; 99 97 tests.version = testers.testVersion { 100 98 package = gimme-aws-creds; 101 99 command = ''touch tmp.conf && OKTA_CONFIG="tmp.conf" gimme-aws-creds --version'';