nixpkgs/pkgs/applications/editors/featherpad/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
709 B
Nix
Raw Normal View History

{ lib, mkDerivation, cmake, hunspell, pkg-config, qttools, qtbase, qtsvg, qtx11extras
, fetchFromGitHub }:
2020-08-24 15:14:31 +00:00
mkDerivation rec {
pname = "featherpad";
2022-01-12 22:46:32 +00:00
version = "1.1.1";
2020-08-24 15:14:31 +00:00
2018-10-23 09:52:36 +00:00
src = fetchFromGitHub {
owner = "tsujan";
repo = "FeatherPad";
rev = "V${version}";
2022-01-12 22:46:32 +00:00
sha256 = "sha256-qDhubKk6FLZmVxp4SkGm1B7zIg6rPtPRoFGCcBYUDFA=";
2018-10-23 09:52:36 +00:00
};
2020-08-24 15:14:31 +00:00
nativeBuildInputs = [ cmake pkg-config qttools ];
buildInputs = [ hunspell qtbase qtsvg qtx11extras ];
2020-08-24 15:14:31 +00:00
meta = with lib; {
2018-10-23 09:52:36 +00:00
description = "Lightweight Qt5 Plain-Text Editor for Linux";
homepage = "https://github.com/tsujan/FeatherPad";
2018-10-23 09:52:36 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.flosse ];
license = licenses.gpl3Plus;
2018-10-23 09:52:36 +00:00
};
}