about summary refs log tree commit diff
path: root/pkgs/by-name/au
diff options
context:
space:
mode:
authorgithub-actions[bot]2024-07-23 00:02:18 +0000
committerGitHub2024-07-23 00:02:18 +0000
commit09a27d5bc162de54bca9e2f705753170b320edf3 (patch)
treeab22544017dd3e6bffd07018afbe712c3daef006 /pkgs/by-name/au
parent60e9cffe2cb6853131a9a640718c5ef3447a0822 (diff)
parent6f3bb7dca6288eb502910d38ba8eebf72d6aa45a (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/by-name/au')
-rw-r--r--pkgs/by-name/au/autoprefixer/tests/simple-execution.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/by-name/au/autoprefixer/tests/simple-execution.nix b/pkgs/by-name/au/autoprefixer/tests/simple-execution.nix
index c889795a2ef5..9445a0bded5f 100644
--- a/pkgs/by-name/au/autoprefixer/tests/simple-execution.nix
+++ b/pkgs/by-name/au/autoprefixer/tests/simple-execution.nix
@@ -1,10 +1,10 @@
 { runCommand, autoprefixer }:
 
 let
-  inherit (autoprefixer) packageName version;
+  inherit (autoprefixer) pname version;
 in
 
-runCommand "${packageName}-tests" { meta.timeout = 60; }
+runCommand "${pname}-tests" { meta.timeout = 60; }
   ''
     # get version of installed program and compare with package version
     claimed_version="$(${autoprefixer}/bin/autoprefixer --version | awk '{print $2}')"