about summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-04-16 17:08:49 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-04-20 22:22:23 -0300
commitecde7e476236a323ea00ced82d9665a5affc8dd7 (patch)
tree32623820137c05634e1447e708efa516ab600b89 /pkgs/applications/emulators
parent96baf95cfeac39c2bb1a7c05071fcbbfe9b35ecf (diff)
rpcemu: change self to finalAttrs
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/rpcemu/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/emulators/rpcemu/default.nix b/pkgs/applications/emulators/rpcemu/default.nix
index 9befb172fe4bc..9fad3725203f4 100644
--- a/pkgs/applications/emulators/rpcemu/default.nix
+++ b/pkgs/applications/emulators/rpcemu/default.nix
@@ -7,13 +7,13 @@
 let
   inherit (qt5) qtbase qtmultimedia wrapQtAppsHook;
 in
-stdenv.mkDerivation (self: {
+stdenv.mkDerivation (finalAttrs: {
   pname = "rpcemu";
   version = "0.9.4";
 
   src = fetchhg {
     url = "http://www.home.marutan.net/hg/rpcemu";
-    rev = "release_${self.version}";
+    rev = "release_${finalAttrs.version}";
     sha256 = "sha256-UyjfTfUpSvJNFPkQWPKppxp/kO0hVGo5cE9RuCU8GJI=";
   };