Files
nixpkgs/pkgs/by-name/fe/featherpad/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

43 lines
765 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
qt6,
hunspell,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "featherpad";
version = "1.6.2";
src = fetchFromGitHub {
owner = "tsujan";
repo = "FeatherPad";
tag = "V${finalAttrs.version}";
hash = "sha256-G47ltOiyNEk/NrFWoXpft/rCJ18t0FTZrc5ReEJL6TU=";
};
nativeBuildInputs = [
cmake
pkg-config
qt6.qttools
qt6.wrapQtAppsHook
];
buildInputs = [
hunspell
qt6.qtbase
qt6.qtsvg
];
meta = {
description = "Lightweight Qt5 Plain-Text Editor for Linux";
homepage = "https://github.com/tsujan/FeatherPad";
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.flosse ];
license = lib.licenses.gpl3Plus;
};
})