From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38631) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hgezj-0004Di-KS for guix-patches@gnu.org; Thu, 27 Jun 2019 20:44:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hgezi-0008Jy-CU for guix-patches@gnu.org; Thu, 27 Jun 2019 20:44:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54785) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hgezi-0008Js-91 for guix-patches@gnu.org; Thu, 27 Jun 2019 20:44:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hgezi-0000U9-6z for guix-patches@gnu.org; Thu, 27 Jun 2019 20:44:02 -0400 Subject: [bug#36410] [PATCH] gnu: Add screenfetch. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:38613) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hgezZ-0004DZ-R0 for guix-patches@gnu.org; Thu, 27 Jun 2019 20:43:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hgezX-0008Bt-D7 for guix-patches@gnu.org; Thu, 27 Jun 2019 20:43:53 -0400 Received: from mx.sdf.org ([205.166.94.20]:58743) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hgezW-0008B1-Q7 for guix-patches@gnu.org; Thu, 27 Jun 2019 20:43:51 -0400 Received: from Epsilon (pool-173-76-53-40.bstnma.fios.verizon.net [173.76.53.40]) (authenticated (0 bits)) by mx.sdf.org (8.15.2/8.14.5) with ESMTPSA id x5S0hmYB022283 (using TLSv1.2 with cipher AES256-GCM-SHA384 (256 bits) verified NO) for ; Fri, 28 Jun 2019 00:43:49 GMT From: zerodaysfordays@sdf.lonestar.org (Jakob L. Kreuze) Date: Thu, 27 Jun 2019 20:42:14 -0400 Message-ID: <8736ju8rrt.fsf@sdf.lonestar.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36410@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable * gnu/packages/admin.scm (screenfetch): New variable. =2D-- gnu/packages/admin.scm | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 3d8c247f57..b920d564e5 100644 =2D-- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -25,6 +25,7 @@ ;;; Copyright =C2=A9 2018 Pierre Neidhardt ;;; Copyright =C2=A9 2019 Brett Gilio ;;; Copyright =C2=A9 2019 Bj=C3=B6rn H=C3=B6fling +;;; Copyright =C2=A9 2019 Jakob L. Kreuze ;;; ;;; This file is part of GNU Guix. ;;; @@ -55,6 +56,7 @@ #:use-module (guix build-system python) #:use-module (guix build-system trivial) #:use-module (gnu packages) + #:use-module (gnu packages algebra) #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages check) @@ -2651,6 +2653,51 @@ used in screenshots to show other users what operati= ng system or distribution you are running, what theme or icon set you are using, etc.") (license license:expat))) =20 +(define-public screenfetch + ;; first commit supporting current GuixSD + (let ((commit "e3ec82dd464e81e4d10bef218b3016e3044c766c")) + (package + (name "screenfetch") + (version (string-append "3.8.0" "-" (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/KittyKatt/screenFetch") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1lzs1l5xgj9mn4b59lhkfgqnyiivf8svd1iwjabzrax90rdmxfwj"))= )) + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((source (assoc-ref %build-inputs "source"))) + (mkdir-p (string-append %output "/bin/")) + (mkdir-p (string-append %output "/man/man1/")) + (copy-file (string-append source "/screenfetch-dev") + (string-append %output "/bin/screenfetch")) + (copy-file (string-append source "/screenfetch.1") + (string-append %output "/man/man1/screenfetch.1")) + (substitute* (string-append %output "/bin/screenfetch") + (("/usr/bin/env bash") + (string-append (assoc-ref %build-inputs "bash") + "/bin/bash"))))))) + (propagated-inputs + `(("bash" ,bash) + ("bc" ,bc) + ("scrot" ,scrot) + ("xdpyinfo" ,xdpyinfo) + ("xprop" ,xprop))) + (home-page "https://github.com/KittyKatt/screenFetch") + (synopsis "System information script") + (description "Bash screenshot information tool which can be used to +generate those nifty terminal theme information and ASCII distribution log= os in +everyone's screenshots nowadays.") + (license license:gpl3)))) + (define-public nnn (package (name "nnn") =2D-=20 2.22.0 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEa1VJLOiXAjQ2BGSm9Qb9Fp2P2VoFAl0VYmYACgkQ9Qb9Fp2P 2Vp60xAAr3f3CF0042Wr3uTGbiNa/YG3XAK5KqBSiXggSw2umawIZXLHSVTbFdOB 0ajgRfEKFSITUoCUtYacDFbb/4mF8/G4sH7lGssXVwqxMkzDCWEsipDi/icoA+sX Ys4cMfho96aTHIkm7w1lAzZ354DWVT6ciDVeaopV+1Tq4TXbaoEu+3NXX0ac+w30 bk1cq/G7vM2Oj1tlsjmW7N43r4/PB6mVU0sQi2uwcjQHP9xj+AxPDu1W5wdq/bU3 T5jW0bIyQdZSkqbb9fh6KUSm3aQs4R9AzIBwSopmq2P+JSgNWf82iyhi4j1TpFM0 JjIsDlEpKNhVZ5QeHn3C6CD3SpoA3ygsy3TOkc8x1+VxXMYEtQCieGS5+Lql5nTC VSExcY3sSBGe/Ib3h6hoVWha6I4E1npdtTZFVFwoybWXECnoE73kc4ln3F9a9aEV gZ37EObHr2uF1XAuZcZAEoTXwLuYYYkvzvVztd4uGk5WHLQeet1RcKItQnhmePFL r9DxBULGFoA+5TJ6IDLDr1VtvcyzqX37/HEliQAjDDuziyyg+1NDlF253jXUdzQ6 jyOyPOyrgLCNxg0w4Y+XmClU/bYLPuihDrOFqvIz6cUXeZpk/bMPht9s6Ab2xVic Pxx+klqIBdN5Ufi2e4uK437C6VRunN6r/DqDJfVQ5XxOOx9dg8s= =es1+ -----END PGP SIGNATURE----- --=-=-=--