flowtime: 3.1 -> 6.1

This commit is contained in:
pokon548
2023-11-22 12:30:12 +08:00
parent 9493008d4b
commit 161b691b11
+7 -3
View File
@@ -13,20 +13,23 @@
, desktop-file-utils
, glib
, pkg-config
, libportal-gtk4
, blueprint-compiler
}:
stdenv.mkDerivation rec {
pname = "flowtime";
version = "3.1";
version = "6.1";
src = fetchFromGitHub {
owner = "Diego-Ivan";
repo = "Flowtime";
rev = "v${version}";
hash = "sha256-aXGdHFj9P8+33VuR8YBi+YYN/vBn94drmtKzNDc4SAY=";
hash = "sha256-wTqHTkt1O3Da2fzxf6DiQjrqOt65ZEhLOkGK5C6HzIk=";
};
nativeBuildInputs = [
blueprint-compiler
desktop-file-utils
glib
gobject-introspection
@@ -41,6 +44,7 @@ stdenv.mkDerivation rec {
libadwaita
libxml2
libgee
libportal-gtk4
] ++ (with gst_all_1; [
gstreamer
gst-plugins-base
@@ -51,6 +55,6 @@ stdenv.mkDerivation rec {
description = "Get what motivates you done, without losing concentration";
homepage = "https://github.com/Diego-Ivan/Flowtime";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ foo-dogsquared ];
maintainers = with maintainers; [ foo-dogsquared pokon548 ];
};
}