From 1df69d56d81b8153234b912076120e763ea9f6e6 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 17 Nov 2022 20:57:06 -0800 Subject: Reindent all package descriptions --- oni/packages/count-emails.scm | 56 ++++++++++++++--------------- oni/packages/hlwm-run-or-raise.scm | 56 ++++++++++++++--------------- oni/packages/hlwm-switch-to-window.scm | 56 ++++++++++++++--------------- oni/packages/inbox-size.scm | 56 ++++++++++++++--------------- oni/packages/mpd-random-albums.scm | 60 +++++++++++++++---------------- oni/packages/notmuch-collect-tasks.scm | 56 ++++++++++++++--------------- oni/packages/notmuch-tag-mailinglists.scm | 56 ++++++++++++++--------------- oni/packages/pick-random-wallpaper.scm | 56 ++++++++++++++--------------- oni/packages/shutdown-rofi.scm | 56 ++++++++++++++--------------- 9 files changed, 254 insertions(+), 254 deletions(-) diff --git a/oni/packages/count-emails.scm b/oni/packages/count-emails.scm index faba330..e35c25e 100644 --- a/oni/packages/count-emails.scm +++ b/oni/packages/count-emails.scm @@ -12,31 +12,31 @@ (let ((commit "66165bdecea54888967fcc6a8c29a3df09a18256") (revision "0")) (package - (name "count-emails") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/count-emails") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "0pv4wbxbg0szs2jiskmxvivrq44ha5ljdn18j3j2pi8q1dp9rmb3")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list scsh notmuch)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "count-emails" bin))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that counts the number of unread emails.") - (description "Counts the number of unread emails.") - (license license:gpl3+)))) + (name "count-emails") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/count-emails") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "0pv4wbxbg0szs2jiskmxvivrq44ha5ljdn18j3j2pi8q1dp9rmb3")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list scsh notmuch)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "count-emails" bin))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that counts the number of unread emails.") + (description "Counts the number of unread emails.") + (license license:gpl3+)))) diff --git a/oni/packages/hlwm-run-or-raise.scm b/oni/packages/hlwm-run-or-raise.scm index a2fe254..ebf4ed8 100644 --- a/oni/packages/hlwm-run-or-raise.scm +++ b/oni/packages/hlwm-run-or-raise.scm @@ -13,31 +13,31 @@ (let ((commit "deda13603d44e0a0aaab5a5f94f103864c64f257") (revision "0")) (package - (name "hlwm-run-or-raise") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/hlwm-run-or-raise.git") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "12z44bk68pyiyl44hfhb1p85fy968p0x7qqjmzh8na0p8lah4x01")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list wmctrl gawk grep hlwm-switch-to-window scsh)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f ; There is no test suite. - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "hlwm-run-or-raise" bin))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that either starts a program or switches to it with herbstluftwm.") - (description "Can be bound to a key to either switch to a program or start it up if it isn't running.") - (license license:gpl3+)))) + (name "hlwm-run-or-raise") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/hlwm-run-or-raise.git") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "12z44bk68pyiyl44hfhb1p85fy968p0x7qqjmzh8na0p8lah4x01")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list wmctrl gawk grep hlwm-switch-to-window scsh)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; There is no test suite. + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "hlwm-run-or-raise" bin))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that either starts a program or switches to it with herbstluftwm.") + (description "Can be bound to a key to either switch to a program or start it up if it isn't running.") + (license license:gpl3+)))) diff --git a/oni/packages/hlwm-switch-to-window.scm b/oni/packages/hlwm-switch-to-window.scm index e3eb0f2..a0721d8 100644 --- a/oni/packages/hlwm-switch-to-window.scm +++ b/oni/packages/hlwm-switch-to-window.scm @@ -9,31 +9,31 @@ (let ((commit "9001a3391f17aa71cc299be8bc8ffadbb9b9ac12") (revision "0")) (package - (name "hlwm-switch-to-window") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/hlwm-switch-to-window.git") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "153rw46012pvbq624hwmfdfv36wl12g7m87vdf1nv4kp91am1nkm")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list herbstluftwm)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "hlwm-switch-to-window" bin))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that checks which monitor to use to switch to a window before switching.") - (description "Can be bound to a key to make sure that when you switch to a window a specific monitor is always used.") - (license license:gpl3+)))) + (name "hlwm-switch-to-window") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/hlwm-switch-to-window.git") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "153rw46012pvbq624hwmfdfv36wl12g7m87vdf1nv4kp91am1nkm")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list herbstluftwm)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "hlwm-switch-to-window" bin))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that checks which monitor to use to switch to a window before switching.") + (description "Can be bound to a key to make sure that when you switch to a window a specific monitor is always used.") + (license license:gpl3+)))) diff --git a/oni/packages/inbox-size.scm b/oni/packages/inbox-size.scm index 8e6802a..f056402 100644 --- a/oni/packages/inbox-size.scm +++ b/oni/packages/inbox-size.scm @@ -11,31 +11,31 @@ (let ((commit "e9a94db05e45be9357ccc757601c1cd890a6254c") (revision "0")) (package - (name "inbox-size") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/inbox-size") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "09mjxk85cqvcxk5n51izfqap36pjd35z476fmvd5vq7d5kgnczzw")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list bash scsh emacs)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "inbox-size" bin))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that checks the size of my GTD inbox.") - (description "Counts the number of items in my GTD inbox.") - (license license:gpl3+)))) + (name "inbox-size") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/inbox-size") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "09mjxk85cqvcxk5n51izfqap36pjd35z476fmvd5vq7d5kgnczzw")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list bash scsh emacs)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "inbox-size" bin))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that checks the size of my GTD inbox.") + (description "Counts the number of items in my GTD inbox.") + (license license:gpl3+)))) diff --git a/oni/packages/mpd-random-albums.scm b/oni/packages/mpd-random-albums.scm index d8e7f03..527914b 100644 --- a/oni/packages/mpd-random-albums.scm +++ b/oni/packages/mpd-random-albums.scm @@ -12,33 +12,33 @@ (let ((commit "c12a766e1920e726129dfd1161a2ef15471f89e8") (revision "0")) (package - (name "mpd-random-albums") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/mpd-random-albums") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "0mgs9377hw3x1nfcah3wwr3zijvzrkqicvgrbcjl3g1p4fmlb8mr")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list mpd bash scsh)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin")) - (site (string-append (assoc-ref outputs "out") "/share/scsh-0.7"))) - (install-file "mpd-random-albums" bin) - (install-file "mpd.scm" site))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that populates the MPD playlist with all of my albums in random order.") - (description "Creates a new playlist in MPD with all of the albums in my database and shuffles them by album.") - (license license:gpl3+)))) + (name "mpd-random-albums") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/mpd-random-albums") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "0mgs9377hw3x1nfcah3wwr3zijvzrkqicvgrbcjl3g1p4fmlb8mr")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list mpd bash scsh)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin")) + (site (string-append (assoc-ref outputs "out") "/share/scsh-0.7"))) + (install-file "mpd-random-albums" bin) + (install-file "mpd.scm" site))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that populates the MPD playlist with all of my albums in random order.") + (description "Creates a new playlist in MPD with all of the albums in my database and shuffles them by album.") + (license license:gpl3+)))) diff --git a/oni/packages/notmuch-collect-tasks.scm b/oni/packages/notmuch-collect-tasks.scm index e664cc0..0d82117 100644 --- a/oni/packages/notmuch-collect-tasks.scm +++ b/oni/packages/notmuch-collect-tasks.scm @@ -11,31 +11,31 @@ (let ((commit "c0399a2bbd499d3fcdf2cfce2d9a8162d5865de0") (revision "0")) (package - (name "notmuch-collect-tasks") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/notmuch-collect-tasks.git") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "1rkxcmlmz5ncd3x59kgffg889wibi3q8d3gv2vm1nvaayzj58zm9")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list bash notmuch)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "notmuch-collect-tasks" bin))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that scans email subjects for tasks to add.") - (description "Creates tasks based on incoming email.") - (license license:gpl3+)))) + (name "notmuch-collect-tasks") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/notmuch-collect-tasks.git") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "1rkxcmlmz5ncd3x59kgffg889wibi3q8d3gv2vm1nvaayzj58zm9")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list bash notmuch)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "notmuch-collect-tasks" bin))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that scans email subjects for tasks to add.") + (description "Creates tasks based on incoming email.") + (license license:gpl3+)))) diff --git a/oni/packages/notmuch-tag-mailinglists.scm b/oni/packages/notmuch-tag-mailinglists.scm index 4273bf0..97bc6b7 100644 --- a/oni/packages/notmuch-tag-mailinglists.scm +++ b/oni/packages/notmuch-tag-mailinglists.scm @@ -11,31 +11,31 @@ (let ((commit "b20cf1593c98b415cb144bd23c9c60926161d359") (revision "0")) (package - (name "notmuch-tag-mailinglists") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/notmuch-tag-mailinglists.git") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "0c3pn3ns4n5sh97plvbxv59i5rh8840fq73ic66kvhkij1c6l4rb")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list bash notmuch)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "notmuch-tag-mailinglists" bin))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that scans email subjects for tasks to add.") - (description "Creates tasks based on incoming email.") - (license license:gpl3+)))) + (name "notmuch-tag-mailinglists") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/notmuch-tag-mailinglists.git") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "0c3pn3ns4n5sh97plvbxv59i5rh8840fq73ic66kvhkij1c6l4rb")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list bash notmuch)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "notmuch-tag-mailinglists" bin))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that scans email subjects for tasks to add.") + (description "Creates tasks based on incoming email.") + (license license:gpl3+)))) diff --git a/oni/packages/pick-random-wallpaper.scm b/oni/packages/pick-random-wallpaper.scm index 3777be6..7f4a706 100644 --- a/oni/packages/pick-random-wallpaper.scm +++ b/oni/packages/pick-random-wallpaper.scm @@ -13,31 +13,31 @@ (let ((commit "6ab43c64aa34c6a13705435f7825d183a59544d8") (revision "0")) (package - (name "pick-random-wallpaper") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/pick-random-wallpaper.git") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "1vkns0a46adaxx0qrw1iq3af1zmc3wy7gmsid0v8893a2688842d")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list findutils bash herbstluftwm xwininfo coreutils feh)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f ; There is no test suite. - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "pick-random-wallpaper" bin))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that sets a random wallpaper using feh.") - (description "Sets a random wallpaper using feh and stores which wallpaper was added in a herbstluftwm attribute.") - (license license:gpl3+)))) + (name "pick-random-wallpaper") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/pick-random-wallpaper.git") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "1vkns0a46adaxx0qrw1iq3af1zmc3wy7gmsid0v8893a2688842d")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list findutils bash herbstluftwm xwininfo coreutils feh)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; There is no test suite. + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "pick-random-wallpaper" bin))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that sets a random wallpaper using feh.") + (description "Sets a random wallpaper using feh and stores which wallpaper was added in a herbstluftwm attribute.") + (license license:gpl3+)))) diff --git a/oni/packages/shutdown-rofi.scm b/oni/packages/shutdown-rofi.scm index d8d970c..85805f3 100644 --- a/oni/packages/shutdown-rofi.scm +++ b/oni/packages/shutdown-rofi.scm @@ -10,31 +10,31 @@ (let ((commit "79cc1bdbabe5d4a1521723de1a5b9c32a1df1c7c") (revision "0")) (package - (name "shutdown-rofi") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (uri (git-reference - (url "git://ryuslash.org/util/tom/shutdown-rofi") - (commit commit))) - (method git-fetch) - (sha256 - (base32 "17c5hr3yrafmmgcxi6m0njhp113yfcylv7ifpgds06sxxn8wdzv0")) - (file-name (git-file-name name version)))) - (propagated-inputs - (list herbstluftwm rofi)) - (build-system gnu-build-system) - (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "shutdown-rofi" bin))))))) - (home-page "https://ryuslash.org/") - (synopsis "A simple script that shows a shutdown menu using rofi.") - (description "Uses rofi to show a simple shutdown menu.") - (license license:gpl3+)))) + (name "shutdown-rofi") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (uri (git-reference + (url "git://ryuslash.org/util/tom/shutdown-rofi") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "17c5hr3yrafmmgcxi6m0njhp113yfcylv7ifpgds06sxxn8wdzv0")) + (file-name (git-file-name name version)))) + (propagated-inputs + (list herbstluftwm rofi)) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "shutdown-rofi" bin))))))) + (home-page "https://ryuslash.org/") + (synopsis "A simple script that shows a shutdown menu using rofi.") + (description "Uses rofi to show a simple shutdown menu.") + (license license:gpl3+)))) -- cgit v1.2.3-54-g00ecf