anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / editors / featherpad / default.nix
blob4334a7ba1191a3265a6a23b5f764760251bfcc6f
1 { lib, mkDerivation, cmake, hunspell, pkg-config, qttools, qtbase, qtsvg, qtx11extras
2 , fetchFromGitHub }:
4 mkDerivation rec {
5   pname = "featherpad";
6   version = "1.4.1";
8   src = fetchFromGitHub {
9     owner = "tsujan";
10     repo = "FeatherPad";
11     rev = "V${version}";
12     sha256 = "sha256-8IT/PxLz6BsLHzY5pM0bTlAO0xvfC7/aI7+Gbw2LyME=";
13   };
15   nativeBuildInputs = [ cmake pkg-config qttools ];
16   buildInputs = [ hunspell qtbase qtsvg qtx11extras ];
18   meta = with lib; {
19     description = "Lightweight Qt5 Plain-Text Editor for Linux";
20     homepage = "https://github.com/tsujan/FeatherPad";
21     platforms = platforms.linux;
22     maintainers = [ maintainers.flosse ];
23     license = licenses.gpl3Plus;
24   };