about summary refs log tree commit diff
path: root/pkgs/development/compilers/xa
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-04-21 11:34:22 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-04-26 08:00:11 -0300
commit7439d61ae5f4fb8d1452ea3742468f8599f01bde (patch)
treed3e6cf425178c5c1029781069fc5c042575d7071 /pkgs/development/compilers/xa
parent8cb18516244dbe70b6989b763a940c84abd8e3fd (diff)
xa: change self to finalAttrs
Diffstat (limited to 'pkgs/development/compilers/xa')
-rw-r--r--pkgs/development/compilers/xa/xa.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/xa/xa.nix b/pkgs/development/compilers/xa/xa.nix
index 9f4d45ba49774..52be6de0812df 100644
--- a/pkgs/development/compilers/xa/xa.nix
+++ b/pkgs/development/compilers/xa/xa.nix
@@ -4,14 +4,14 @@
 , perl
 }:
 
-stdenv.mkDerivation (self: {
+stdenv.mkDerivation (finalAttrs: {
   pname = "xa";
   version = "2.3.14";
 
   src = fetchurl {
     urls = [
-      "https://www.floodgap.com/retrotech/xa/dists/xa-${self.version}.tar.gz"
-      "https://www.floodgap.com/retrotech/xa/dists/unsupported/xa-${self.version}.tar.gz"
+      "https://www.floodgap.com/retrotech/xa/dists/xa-${finalAttrs.version}.tar.gz"
+      "https://www.floodgap.com/retrotech/xa/dists/unsupported/xa-${finalAttrs.version}.tar.gz"
     ];
     hash = "sha256-G5u6vdvY07lBC4UuUKEo7qQeaBM55vdsPoB2+lQg8C4=";
   };