Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Francis: init at 1.1.0 #298182

Merged
merged 2 commits into from
Apr 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
52 changes: 52 additions & 0 deletions pkgs/by-name/fr/francis/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{ cmake
, fetchFromGitLab
, kdePackages
, lib
, pkg-config
, stdenv
}:

stdenv.mkDerivation rec {
pname = "francis";
version = "1.1.0";

src = fetchFromGitLab {
domain = "invent.kde.org";
repo = "francis";
owner = "utilities";
rev = "v${version}";
hash = "sha256-TvLFzGWb3RROGywhNzCvnFG00PpKC2k+/w1bgwTCESg=";
};

nativeBuildInputs = [
cmake
kdePackages.kirigami
kdePackages.kirigami-addons
kdePackages.plasma5support
kdePackages.qqc2-desktop-style
kdePackages.qtsvg
kdePackages.qtwayland
kdePackages.wrapQtAppsHook
pkg-config
];

buildInputs = [
kdePackages.kiconthemes
# otherwise buttons are blank on non-kde
kdePackages.breeze-icons
];

cmakeFlags = [
# fix can't find Qt6QmlCompilerPlusPrivate
"-DQT_NO_FIND_QMLSC=TRUE"
];

meta = with lib; {
description = "Francis uses the well-known pomodoro technique to help you get more productive";
Aleksanaa marked this conversation as resolved.
Show resolved Hide resolved
homepage = "https://apps.kde.org/francis/";
license = with licenses; [ bsd2 bsd3 cc0 lgpl2Plus lgpl21Plus gpl3Plus ];
mainProgram = "francis";
maintainers = with maintainers; [ cimm ];
platforms = lib.platforms.linux;
};
}