Merge pull request #245612 from figsoda/attr

treewide: remove attrPath from nix-update-script calls
This commit is contained in:
Rick van Schijndel 2023-07-27 13:28:48 +02:00 committed by GitHub
commit ab5f46ddc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 7 additions and 22 deletions

View file

@ -67,9 +67,7 @@ python3.pkgs.buildPythonApplication rec {
'';
passthru = {
updateScript = nix-update-script {
attrPath = "portfolio-filemanager";
};
updateScript = nix-update-script { };
};
meta = with lib; {

View file

@ -81,9 +81,7 @@ python3.pkgs.buildPythonApplication rec {
'';
passthru = {
updateScript = nix-update-script {
attrPath = "komikku";
};
updateScript = nix-update-script { };
};
meta = with lib; {

View file

@ -70,9 +70,7 @@ python3.pkgs.buildPythonApplication rec {
# handle setup hooks better
strictDeps = false;
passthru.updateScript = nix-update-script {
attrPath = pname;
};
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://github.com/dialect-app/dialect";

View file

@ -67,7 +67,6 @@ mkDerivation rec {
passthru = {
updateScript = nix-update-script {
attrPath = pname;
extraArgs = [ "-vr" "(.*)-android" ];
};
};

View file

@ -66,9 +66,7 @@ stdenv.mkDerivation rec {
]);
passthru = {
updateScript = nix-update-script {
attrPath = "tuba";
};
updateScript = nix-update-script { };
};
meta = with lib; {

View file

@ -52,9 +52,7 @@ buildNpmPackage rec {
makeWrapper ${nodePackages.ts-node}/bin/ts-node $out/bin/lv_img_conv --add-flags $out/lib/node_modules/lv_img_conv/lib/cli.ts
'';
passthru.updateScript = nix-update-script {
attrPath = pname;
};
passthru.updateScript = nix-update-script { };
meta = with lib; {
changelog = "https://github.com/lvgl/lv_img_conv/releases/tag/v${version}";

View file

@ -19,9 +19,7 @@ buildGoModule rec {
"-X main.version=${version}"
];
passthru.updateScript = nix-update-script {
attrPath = pname;
};
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "A tool to simplify storing secrets that should be accessible in the shell environment in your git repo.";

View file

@ -93,9 +93,7 @@ python.pkgs.buildPythonApplication rec {
passthru = {
inherit python;
updateScript = nix-update-script {
attrPath = pname;
};
updateScript = nix-update-script { };
tests.version = testers.testVersion {
package = gimme-aws-creds;
command = ''touch tmp.conf && OKTA_CONFIG="tmp.conf" gimme-aws-creds --version'';