about summary refs log tree commit diff
path: root/pkgs/applications/misc/flowtime/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/flowtime/default.nix')
-rw-r--r--pkgs/applications/misc/flowtime/default.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/pkgs/applications/misc/flowtime/default.nix b/pkgs/applications/misc/flowtime/default.nix
deleted file mode 100644
index 06962d75452b6..0000000000000
--- a/pkgs/applications/misc/flowtime/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ stdenv
-, lib
-, fetchFromGitHub
-, vala
-, meson
-, ninja
-, wrapGAppsHook4
-, gst_all_1
-, libadwaita
-, libxml2
-, desktop-file-utils
-, pkg-config
-, libportal-gtk4
-, blueprint-compiler
-, appstream-glib
-}:
-
-stdenv.mkDerivation rec {
-  pname = "flowtime";
-  version = "6.1";
-
-  src = fetchFromGitHub {
-    owner = "Diego-Ivan";
-    repo = "Flowtime";
-    rev = "v${version}";
-    hash = "sha256-wTqHTkt1O3Da2fzxf6DiQjrqOt65ZEhLOkGK5C6HzIk=";
-  };
-
-  nativeBuildInputs = [
-    blueprint-compiler
-    desktop-file-utils
-    meson
-    ninja
-    pkg-config
-    vala
-    wrapGAppsHook4
-    appstream-glib
-  ];
-
-  buildInputs = [
-    libadwaita
-    libxml2
-    libportal-gtk4
-  ] ++ (with gst_all_1; [
-    gstreamer
-    gst-plugins-base
-  ]);
-
-  meta = with lib; {
-    description = "Get what motivates you done, without losing concentration";
-    mainProgram = "flowtime";
-    homepage = "https://github.com/Diego-Ivan/Flowtime";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ foo-dogsquared pokon548 ];
-    platforms = platforms.linux;
-  };
-}