mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
57 lines
974 B
Nix
57 lines
974 B
Nix
{ 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.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Diego-Ivan";
|
|
repo = "Flowtime";
|
|
rev = "v${version}";
|
|
hash = "sha256-aXGdHFj9P8+33VuR8YBi+YYN/vBn94drmtKzNDc4SAY=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|