all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Efraim Flashner <efraim@flashner.co.il>
To: guix-devel@gnu.org
Subject: [PATCH 2/8] gnu: Add wgetpaste.
Date: Mon, 21 Nov 2016 23:00:29 +0200	[thread overview]
Message-ID: <20161121210035.13726-3-efraim@flashner.co.il> (raw)
In-Reply-To: <20161121210035.13726-1-efraim@flashner.co.il>

* gnu/packages/wget.scm (wgetpaste): New variable.
---
 gnu/packages/wget.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm
index 80da332..72aab86 100644
--- a/gnu/packages/wget.scm
+++ b/gnu/packages/wget.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
 ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -60,3 +61,36 @@ HTTPS and FTP protocols.  It can resume interrupted downloads, use file name
 wild cards, supports proxies and cookies, and it can convert absolute links
 in downloaded documents to relative links.")
     (license gpl3+))) ; some files are under GPLv2+
+
+(define-public wgetpaste
+  (package
+    (name "wgetpaste")
+    (version "2.28")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append "http://wgetpaste.zlin.dk/wgetpaste-"
+                            version ".tar.bz2"))
+        (sha256
+         (base32
+          "1hh9svyypqcvdg5mjxyyfzpdzhylhf7s7xq5dzglnm4injx3i3ak"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (delete 'build)
+         (replace 'install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin"))
+                    (zsh (string-append out "/share/zsh/site-functions")))
+               (install-file "wgetpaste" bin)
+               (install-file "_wgetpaste" zsh)))))
+       #:tests? #f)) ; no test target
+    (home-page "http://wgetpaste.zlin.dk/")
+    (synopsis "Script that automates pasting to a number of pastebin services")
+    (description
+     "@code{wgetpaste} is an extremely simple command-line interface to various
+online pastebin services.")
+    (license public-domain)))
-- 
2.10.2

  parent reply	other threads:[~2016-11-21 21:00 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-21 21:00 [PATCH 0/8] Random collection of patches Efraim Flashner
2016-11-21 21:00 ` [PATCH 1/8] gnu: Add aspell-dict-he Efraim Flashner
2016-11-22 20:01   ` Alex Kost
2016-11-21 21:00 ` Efraim Flashner [this message]
2016-11-23 11:48   ` [PATCH 2/8] gnu: Add wgetpaste ng0
2016-11-21 21:00 ` [PATCH 3/8] gnu: Add rkflashtool Efraim Flashner
2016-11-21 21:00 ` [PATCH 4/8] gnu: Add viewnior Efraim Flashner
2016-11-22 20:09   ` Alex Kost
2016-11-22 20:18     ` Marius Bakke
2016-11-23 21:48       ` Ludovic Courtès
2016-11-21 21:00 ` [PATCH 5/8] gnu: Rename owncloud.scm to sync.scm Efraim Flashner
2016-11-21 21:00 ` [PATCH 6/8] gnu: Add qsyncthingtray Efraim Flashner
2016-11-21 21:00 ` [PATCH 7/8] gnu: Add lekha Efraim Flashner
2016-11-21 21:00 ` [PATCH 8/8] gnu: Add econnman Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161121210035.13726-3-efraim@flashner.co.il \
    --to=efraim@flashner.co.il \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.