Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
677 B
Nix
43 lines
677 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
fetchurl,
|
|
qtsvg,
|
|
qtwebengine,
|
|
kconfigwidgets,
|
|
kitemmodels,
|
|
}:
|
|
mkKdeDerivation rec {
|
|
pname = "klevernotes";
|
|
version = "1.2.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/klevernotes/${version}/klevernotes-${version}.tar.xz";
|
|
hash = "sha256-btnCn9YhA0aIhg6PXYuxsZQa6JeHyIrYwSKvTuqrsj8=";
|
|
};
|
|
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
qtwebengine
|
|
kconfigwidgets
|
|
kitemmodels
|
|
];
|
|
|
|
meta.license = with lib.licenses; [
|
|
bsd3
|
|
cc-by-sa-40
|
|
cc0
|
|
# TODO: add FSFAP license
|
|
gpl2Plus
|
|
gpl3Only
|
|
gpl3Plus
|
|
lgpl2Only
|
|
lgpl2Plus
|
|
lgpl21Only
|
|
lgpl21Plus
|
|
lgpl3Only
|
|
lgpl3Plus
|
|
mit
|
|
];
|
|
}
|