Commit a1768a41 authored by Danilo Reyes's avatar Danilo Reyes
Browse files

furtherance 1.8.0 changed rec into finalAttrs

parent eed18924
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})