Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2023-04-22 14:28:33 +08:00
{
stdenv,
lib,
fetchFromGitHub,
vala,
meson,
ninja,
wrapGAppsHook4,
2023-12-21 19:14:16 -03:00
gst_all_1,
2023-04-22 14:28:33 +08:00
libadwaita,
libxml2,
desktop-file-utils,
pkg-config,
2023-11-21 15:41:29 +08:00
libportal-gtk4,
blueprint-compiler,
2023-12-21 19:14:16 -03:00
appstream-glib,
2023-04-22 14:28:33 +08:00
}:
stdenv.mkDerivation rec {
pname = "flowtime";
2024-05-06 08:15:15 +08:00
version = "6.5";
2023-04-22 14:28:33 +08:00
src = fetchFromGitHub {
owner = "Diego-Ivan";
repo = "Flowtime";
rev = "v${version}";
2024-05-06 08:15:15 +08:00
hash = "sha256-J0Pscv0ZOpA/LV2mPTLOmDPQpfZhizTghatGnrJHToE=";
2023-04-22 14:28:33 +08:00
};
nativeBuildInputs = [
2023-11-21 15:41:29 +08:00
blueprint-compiler
2023-04-22 14:28:33 +08:00
desktop-file-utils
meson
ninja
pkg-config
vala
wrapGAppsHook4
2023-12-21 19:14:16 -03:00
appstream-glib
2023-04-22 14:28:33 +08:00
];
buildInputs = [
libadwaita
libxml2
2023-11-21 15:41:29 +08:00
libportal-gtk4
2023-12-21 19:14:16 -03:00
]
++ (with gst_all_1; [
gstreamer
gst-plugins-base
]);
2023-04-22 14:28:33 +08:00
meta = with lib; {
description = "Get what motivates you done, without losing concentration";
mainProgram = "flowtime";
2023-04-22 14:28:33 +08:00
homepage = "https://github.com/Diego-Ivan/Flowtime";
license = licenses.gpl3Plus;
2023-11-21 15:41:29 +08:00
maintainers = with maintainers; [
foo-dogsquared
pokon548
];
2023-12-04 17:52:46 -03:00
platforms = platforms.linux;
2023-04-22 14:28:33 +08:00
};
}