about summary refs log tree commit diff
path: root/pkgs/games
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/games
parent6621358e6d439e38fae5101d6c7e133029affec2 (diff)
downloadnixlib-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar
nixlib-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.gz
nixlib-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.bz2
nixlib-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.lz
nixlib-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.xz
nixlib-a211d942913d9c4071771f3ffb4c9e1000043d6a.tar.zst
nixlib-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/games')
-rw-r--r--pkgs/games/cbonsai/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/cbonsai/default.nix b/pkgs/games/cbonsai/default.nix
index 30abbba93f28..2dc131aba6db 100644
--- a/pkgs/games/cbonsai/default.nix
+++ b/pkgs/games/cbonsai/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
   makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
   installFlags = [ "PREFIX=$(out)" ];
 
-  passthru.updateScript = nix-update-script { attrPath = pname; };
+  passthru.updateScript = nix-update-script { };
 
   meta = with lib; {
     description = "Grow bonsai trees in your terminal";