flowtime: init at 3.0
This commit is contained in:
parent
8f3637d7d4
commit
4c4d57b78d
2 changed files with 58 additions and 0 deletions
56
pkgs/applications/misc/flowtime/default.nix
Normal file
56
pkgs/applications/misc/flowtime/default.nix
Normal file
|
@ -0,0 +1,56 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, vala
|
||||
, meson
|
||||
, ninja
|
||||
, wrapGAppsHook4
|
||||
, libadwaita
|
||||
, libxml2
|
||||
, libgee
|
||||
, gst_all_1
|
||||
, gobject-introspection
|
||||
, desktop-file-utils
|
||||
, glib
|
||||
, pkg-config
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "flowtime";
|
||||
version = "3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Diego-Ivan";
|
||||
repo = "Flowtime";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-op643yU7KdkTO9hT0iYTIqBP4oPe0MT1R5I3FAtN0/I=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
desktop-file-utils
|
||||
glib
|
||||
gobject-introspection
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
vala
|
||||
wrapGAppsHook4
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libadwaita
|
||||
libxml2
|
||||
libgee
|
||||
] ++ (with gst_all_1; [
|
||||
gstreamer
|
||||
gst-plugins-base
|
||||
gst-plugins-bad
|
||||
]);
|
||||
|
||||
meta = with lib; {
|
||||
description = "Get what motivates you done, without losing concentration";
|
||||
homepage = "https://github.com/Diego-Ivan/Flowtime";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ foo-dogsquared ];
|
||||
};
|
||||
}
|
|
@ -29926,6 +29926,8 @@ with pkgs;
|
|||
|
||||
expenses = callPackage ../applications/misc/expenses { };
|
||||
|
||||
flowtime = callPackage ../applications/misc/flowtime { };
|
||||
|
||||
fnott = callPackage ../applications/misc/fnott { };
|
||||
|
||||
furnace = callPackage ../applications/audio/furnace {
|
||||
|
|
Loading…
Reference in a new issue