3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/featherpad/default.nix

26 lines
709 B
Nix
Raw Normal View History

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