mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 12:45:27 +03:00
calligraplan: init at 3.3.0
This commit is contained in:
parent
54d9bb9cf7
commit
8612d22fc7
1 changed files with 59 additions and 0 deletions
59
pkgs/by-name/ca/calligraplan/package.nix
Normal file
59
pkgs/by-name/ca/calligraplan/package.nix
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitLab,
|
||||||
|
qt5,
|
||||||
|
libsForQt5,
|
||||||
|
cmake,
|
||||||
|
extra-cmake-modules,
|
||||||
|
gitUpdater,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "calligraplan";
|
||||||
|
version = "3.3.0";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "invent.kde.org";
|
||||||
|
owner = "office";
|
||||||
|
repo = "calligraplan";
|
||||||
|
tag = "v${finalAttrs.version}";
|
||||||
|
hash = "sha256-szPdRxbzJ2+nmgp+1FwmKZwHEDV8EtbDW/3jsw4J6HI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qt5.qtbase
|
||||||
|
libsForQt5.kdbusaddons
|
||||||
|
libsForQt5.kguiaddons
|
||||||
|
libsForQt5.ki18n
|
||||||
|
libsForQt5.kiconthemes
|
||||||
|
libsForQt5.kitemviews
|
||||||
|
libsForQt5.kjobwidgets
|
||||||
|
libsForQt5.kio
|
||||||
|
libsForQt5.knotifications
|
||||||
|
libsForQt5.kparts
|
||||||
|
libsForQt5.kinit
|
||||||
|
libsForQt5.kdiagram
|
||||||
|
libsForQt5.qt5.qtx11extras
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
qt5.wrapQtAppsHook
|
||||||
|
cmake
|
||||||
|
extra-cmake-modules
|
||||||
|
];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = gitUpdater { rev-prefix = "v"; };
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://www.calligra.org/plan/";
|
||||||
|
license = lib.licenses.gpl2Only;
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
maintainers = with lib.maintainers; [ bot-wxt1221 ];
|
||||||
|
description = "Project Management Application";
|
||||||
|
mainProgram = "calligraplan";
|
||||||
|
changelog = "https://invent.kde.org/office/calligraplan/-/tags/v${finalAttrs.version}";
|
||||||
|
};
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue