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