blob: 61fba7a2017f5ff8afcb964c0377dec2a34ded0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
;;; Settings Packages Module for PantherX
;;; 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)))
|