about summary refs log tree commit diff
path: root/pkgs/applications/misc/furtherance
diff options
context:
space:
mode:
authorDanilo Reyes <CaptainJawZ@outlook.com>2023-06-07 09:23:08 -0600
committerDanilo Reyes <CaptainJawZ@outlook.com>2023-06-07 09:52:03 -0600
commita1768a41da3b01767b7249fbb09903660c3f671e (patch)
tree9c61c49b5e0295f4c967beb8864b94d35b4e67f9 /pkgs/applications/misc/furtherance
parenteed18924fe76f2ec37d03dd93470265093619632 (diff)
furtherance 1.8.0 changed rec into finalAttrs
Diffstat (limited to 'pkgs/applications/misc/furtherance')
-rw-r--r--pkgs/applications/misc/furtherance/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/misc/furtherance/default.nix b/pkgs/applications/misc/furtherance/default.nix
index 3e7432d6cd3ec..e9c8a28950fdd 100644
--- a/pkgs/applications/misc/furtherance/default.nix
+++ b/pkgs/applications/misc/furtherance/default.nix
@@ -4,21 +4,21 @@
 , dbus, gtk4, sqlite
 }:
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
   pname = "furtherance";
   version = "1.8.0";
 
   src = fetchFromGitHub {
     owner = "lakoliu";
     repo = "Furtherance";
-    rev = "v${version}";
-    sha256 = "sha256-l62k7aFyKfYWO+Z85KR8tpwts28pamINHYp/oKuHkhc=";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-l62k7aFyKfYWO+Z85KR8tpwts28pamINHYp/oKuHkhc=";
   };
 
   cargoDeps = rustPlatform.fetchCargoTarball {
-    inherit src;
-    name = "${pname}-${version}";
-    sha256 = "sha256-AuXSX+64rJcTChpsE5tqk67bihKkSyimFAMhb1VdbBs=";
+    inherit (finalAttrs) src;
+    name = "${finalAttrs.pname}-${finalAttrs.version}";
+    hash = "sha256-AuXSX+64rJcTChpsE5tqk67bihKkSyimFAMhb1VdbBs=";
   };
 
   nativeBuildInputs = [
@@ -48,4 +48,4 @@ stdenv.mkDerivation rec {
     platforms = platforms.linux;
     maintainers = with maintainers; [ CaptainJawZ ];
   };
-}
+})