diff options
Diffstat (limited to 'guix.scm')
-rw-r--r-- | guix.scm | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -1,20 +1,20 @@ -;;; Qkbox --- TojoQK's toybox +;;; Toot --- Mastodon Client ;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo> ;;; -;;; This file is part of Qkbox. +;;; This file is part of Toot. ;;; -;;; Qkbox is free software; you can redistribute it and/or modify it +;;; Toot is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or ;;; (at your option) any later version. ;;; -;;; Qkbox is distributed in the hope that it will be useful, but +;;; Toot is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;; General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License -;;; along with Qkbox. If not, see <http://www.gnu.org/licenses/>. +;;; along with Toot. If not, see <http://www.gnu.org/licenses/>. (use-modules (guix packages) ((guix licenses) #:prefix license:) @@ -28,11 +28,11 @@ (gnu packages texinfo) (gnu packages mastodon)) -(define guile-qkbox +(define guile-toot (package - (name "guile-qkbox") + (name "guile-toot") (version "0.1.0") - (source (string-append (getcwd) "/qkbox-" version ".tar.gz")) + (source (string-append (getcwd) "/toot-" version ".tar.gz")) (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) @@ -43,9 +43,9 @@ `(("guile" ,guile-3.0) ("gulie-json" ,guile-json-4) ("guile-picture-language" ,guile-picture-language))) - (synopsis "TojoQK's toybox") - (description "Qkbox is TojoQK's toybox.") - (home-page "https://gitlab.com/tojoqk/qkbox") + (synopsis "Mastodon Client") + (description "Toot is Mastodon Client.") + (home-page "https://gitlab.com/tojoqk/toot") (license license:gpl3+))) -guile-qkbox +guile-toot |