Unverified Commit 91430887 authored by Guillaume Girol's avatar Guillaume Girol Committed by GitHub
Browse files

Merge pull request #236384 from CaptainJawZ/furtherance

furtherance: 1.7.0 -> 1.8.0
parents f83e1372 a1768a41
Loading
Loading
Loading
Loading
+8 −8
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.7.0";
  version = "1.8.0";

  src = fetchFromGitHub {
    owner = "lakoliu";
    repo = "Furtherance";
    rev = "v${version}";
    sha256 = "sha256-M3k2q32/vMG9uTHk2qqUz0E4ptzxfCOrs9NMjtyxZ5Y=";
    rev = "v${finalAttrs.version}";
    hash = "sha256-l62k7aFyKfYWO+Z85KR8tpwts28pamINHYp/oKuHkhc=";
  };

  cargoDeps = rustPlatform.fetchCargoTarball {
    inherit src;
    name = "${pname}-${version}";
    sha256 = "sha256-qLrX3X8wgNrI8G0RgWydVA35cdxcblSUxTKHty+eCds=";
    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 ];
  };
}
})