diff options
author | Franz Geffke <franz@pantherx.org> | 2023-11-06 20:08:14 +0000 |
---|---|---|
committer | Franz Geffke <franz@pantherx.org> | 2023-11-06 20:08:14 +0000 |
commit | 47b4c9c854915df93893dbaa993accfacf9027fe (patch) | |
tree | 4f9b1742d63fcfbc94cc6b8d84f76c4d00c3a0b7 /px/packages/document.scm | |
parent | 0b426d7b7ed8e176bf464ef9e0683f74a6c9d20f (diff) |
rewrite: apply guix-reference formatting; cleanup some module imports
Diffstat (limited to 'px/packages/document.scm')
-rw-r--r-- | px/packages/document.scm | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/px/packages/document.scm b/px/packages/document.scm index 4cbeb64..61fba7a 100644 --- a/px/packages/document.scm +++ b/px/packages/document.scm @@ -1,9 +1,9 @@ ;;; Settings Packages Module for PantherX -;;; Author: Hamzeh Nasajpour (h.nasajpour@pantherx.org) -;;; +;;; Hamzeh Nasajpour (h.nasajpour@pantherx.org) (define-module (px packages document) - #:use-module ((guix licenses) #:prefix license:) + #:use-module ((guix licenses) + #:prefix license:) #:use-module (guix download) #:use-module (guix packages) #:use-module (guix build-system cmake) @@ -19,23 +19,20 @@ (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")))) + (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))) + `(#: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") |