about summary refs log tree commit diff
path: root/pkgs/applications/emulators/yapesdl
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-04-16 17:09:42 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-04-20 22:22:23 -0300
commitaa16ab8a04567793f3253b73ab0f70653fc04fc5 (patch)
tree882529729098e8dfcec5db6211bd406b153e1ce4 /pkgs/applications/emulators/yapesdl
parent8577d50d0dfb807bc2d885d3f38f4079aee9c3d2 (diff)
yapesdl: change self to finalAttrs
Diffstat (limited to 'pkgs/applications/emulators/yapesdl')
-rw-r--r--pkgs/applications/emulators/yapesdl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/emulators/yapesdl/default.nix b/pkgs/applications/emulators/yapesdl/default.nix
index 2ea3583edd76e..136e6ce4eb896 100644
--- a/pkgs/applications/emulators/yapesdl/default.nix
+++ b/pkgs/applications/emulators/yapesdl/default.nix
@@ -5,14 +5,14 @@
 , SDL2
 }:
 
-stdenv.mkDerivation (self: {
+stdenv.mkDerivation (finalAttrs: {
   pname = "yapesdl";
   version = "0.71.2";
 
   src = fetchFromGitHub {
     owner = "calmopyrin";
     repo = "yapesdl";
-    rev = "v${self.version}";
+    rev = "v${finalAttrs.version}";
     hash = "sha256-QGF3aS/YSzdGxHONKyA/iTewEVYsjBAsKARVMXkFV2k=";
   };