summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/featherpad
diff options
context:
space:
mode:
authorMarkus Kohlhase <mail@markus-kohlhase.de>2018-10-23 11:52:36 +0200
committerMarkus Kohlhase <mail@markus-kohlhase.de>2018-10-24 11:47:43 +0200
commit039f9fbb5b6963d0f92022b7eeef0dbb0a853e98 (patch)
tree2033a7f14ba8a93a2abbbf8d87775d7d763ea563 /pkgs/applications/editors/featherpad
parent608e7b20f688cd7561c816001871c4c3b456d13e (diff)
featherpad: init at 0.9.1
Diffstat (limited to 'pkgs/applications/editors/featherpad')
-rw-r--r--pkgs/applications/editors/featherpad/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/editors/featherpad/default.nix b/pkgs/applications/editors/featherpad/default.nix
new file mode 100644
index 000000000000..dbdc13ece2a8
--- /dev/null
+++ b/pkgs/applications/editors/featherpad/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, qt5, fetchFromGitHub }:
+
+with qt5;
+
+stdenv.mkDerivation rec {
+ version = "0.9.1";
+ name = "featherpad-${version}";
+ src = fetchFromGitHub {
+ owner = "tsujan";
+ repo = "FeatherPad";
+ rev = "V${version}";
+ sha256 = "053j14f6fw31cdnfr8hqpxw6jh2v65z43qchdsymbrk5zji8gxla";
+ };
+ nativeBuildInputs = [ qmake pkgconfig qttools ];
+ buildInputs = [ qtbase qtsvg qtx11extras ];
+ meta = with stdenv.lib; {
+ description = "Lightweight Qt5 Plain-Text Editor for Linux";
+ homepage = https://github.com/tsujan/FeatherPad;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.flosse ];
+ license = licenses.gpl3;
+ };
+}