Merge pull request #245612 from figsoda/attr
treewide: remove attrPath from nix-update-script calls
This commit is contained in:
commit
ab5f46ddc2
8 changed files with 7 additions and 22 deletions
|
@ -67,9 +67,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script {
|
updateScript = nix-update-script { };
|
||||||
attrPath = "portfolio-filemanager";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -81,9 +81,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script {
|
updateScript = nix-update-script { };
|
||||||
attrPath = "komikku";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -70,9 +70,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
# handle setup hooks better
|
# handle setup hooks better
|
||||||
strictDeps = false;
|
strictDeps = false;
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script {
|
passthru.updateScript = nix-update-script { };
|
||||||
attrPath = pname;
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/dialect-app/dialect";
|
homepage = "https://github.com/dialect-app/dialect";
|
||||||
|
|
|
@ -67,7 +67,6 @@ mkDerivation rec {
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script {
|
updateScript = nix-update-script {
|
||||||
attrPath = pname;
|
|
||||||
extraArgs = [ "-vr" "(.*)-android" ];
|
extraArgs = [ "-vr" "(.*)-android" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -66,9 +66,7 @@ stdenv.mkDerivation rec {
|
||||||
]);
|
]);
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script {
|
updateScript = nix-update-script { };
|
||||||
attrPath = "tuba";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -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
|
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 {
|
passthru.updateScript = nix-update-script { };
|
||||||
attrPath = pname;
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
changelog = "https://github.com/lvgl/lv_img_conv/releases/tag/v${version}";
|
changelog = "https://github.com/lvgl/lv_img_conv/releases/tag/v${version}";
|
||||||
|
|
|
@ -19,9 +19,7 @@ buildGoModule rec {
|
||||||
"-X main.version=${version}"
|
"-X main.version=${version}"
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script {
|
passthru.updateScript = nix-update-script { };
|
||||||
attrPath = pname;
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A tool to simplify storing secrets that should be accessible in the shell environment in your git repo.";
|
description = "A tool to simplify storing secrets that should be accessible in the shell environment in your git repo.";
|
||||||
|
|
|
@ -93,9 +93,7 @@ python.pkgs.buildPythonApplication rec {
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
inherit python;
|
inherit python;
|
||||||
updateScript = nix-update-script {
|
updateScript = nix-update-script { };
|
||||||
attrPath = pname;
|
|
||||||
};
|
|
||||||
tests.version = testers.testVersion {
|
tests.version = testers.testVersion {
|
||||||
package = gimme-aws-creds;
|
package = gimme-aws-creds;
|
||||||
command = ''touch tmp.conf && OKTA_CONFIG="tmp.conf" gimme-aws-creds --version'';
|
command = ''touch tmp.conf && OKTA_CONFIG="tmp.conf" gimme-aws-creds --version'';
|
||||||
|
|
Loading…
Reference in a new issue