Merge pull request #236384 from CaptainJawZ/furtherance

furtherance: 1.7.0 -> 1.8.0
This commit is contained in:
Guillaume Girol 2023-06-18 15:53:58 +00:00 committed by GitHub
commit 9143088764
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 ];
};
}
})