summaryrefslogtreecommitdiff
path: root/px/packages/document.scm
diff options
context:
space:
mode:
Diffstat (limited to 'px/packages/document.scm')
-rw-r--r--px/packages/document.scm42
1 files changed, 42 insertions, 0 deletions
diff --git a/px/packages/document.scm b/px/packages/document.scm
new file mode 100644
index 0000000..4cbeb64
--- /dev/null
+++ b/px/packages/document.scm
@@ -0,0 +1,42 @@
+;;; Settings Packages Module for PantherX
+;;; Author: Hamzeh Nasajpour (h.nasajpour@pantherx.org)
+;;;
+
+(define-module (px packages document)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix download)
+ #:use-module (guix packages)
+ #:use-module (guix build-system cmake)
+ #:use-module (guix build-system qt)
+ #:use-module (gnu packages hunspell)
+ #:use-module (gnu packages libreoffice)
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages qt)
+ #:use-module (gnu packages base))
+
+(define-public featherpad
+ (package
+ (name "featherpad")
+ (version "1.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/tsujan/FeatherPad/archive/V" version ".tar.gz"))
+ (sha256
+ (base32
+ "1406a1appj3qf5545wfgvpskxm4r1vwxchd71pbvghxnic61c506"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(
+ #:tests? #f))
+ (native-inputs `(
+ ("pkg-config" ,pkg-config)
+ ("hunspell" ,hunspell)
+ ("qtsvg" ,qtsvg-5)
+ ("qtx11extras" ,qtx11extras)
+ ("qtbase" ,qtbase-5)))
+ (home-page "https://github.com/tsujan/FeatherPad")
+ (synopsis "FeatherPad is a lightweight Qt5 plain-text editor for Linux")
+ (description "FeatherPad is a lightweight Qt5 plain-text editor for Linux")
+ (license license:expat)))