2020-08-24 16:14:31 +01:00
|
|
|
{ stdenv, mkDerivation, pkgconfig, qmake, qttools, qtbase, qtsvg, qtx11extras, fetchFromGitHub }:
|
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "featherpad";
|
2020-08-24 16:14:31 +01:00
|
|
|
version = "0.10.0";
|
|
|
|
|
2018-10-23 10:52:36 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tsujan";
|
|
|
|
repo = "FeatherPad";
|
|
|
|
rev = "V${version}";
|
2019-05-21 14:31:29 +01:00
|
|
|
sha256 = "1wrbs6kni9s3x39cckm9kzpglryxn5vyarilvh9pafbzpc6rc57p";
|
2018-10-23 10:52:36 +01:00
|
|
|
};
|
2020-08-24 16:14:31 +01:00
|
|
|
|
2018-10-23 10:52:36 +01:00
|
|
|
nativeBuildInputs = [ qmake pkgconfig qttools ];
|
|
|
|
buildInputs = [ qtbase qtsvg qtx11extras ];
|
2020-08-24 16:14:31 +01:00
|
|
|
|
2018-10-23 10:52:36 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight Qt5 Plain-Text Editor for Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/tsujan/FeatherPad";
|
2018-10-23 10:52:36 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.flosse ];
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|