unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Stalonetray package
@ 2014-02-09 15:38 Raimon Grau
  2014-02-09 21:07 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Raimon Grau @ 2014-02-09 15:38 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 190 bytes --]

Hi, Here's the recipe for stalonetray, a small system tray application
which plays well with ratpoison and these minimalist wm's.

http://stalonetray.sourceforge.net/

Cheers,

Raimon Grau


[-- Attachment #2: Stalonetray --]
[-- Type: text/x-diff, Size: 3047 bytes --]

From f5e2068da3b5dcad01fda7a959521e2cd85f13ea Mon Sep 17 00:00:00 2001
From: Raimon Grau <raimonster@gmail.com>
Date: Sun, 9 Feb 2014 16:28:39 +0100
Subject: [PATCH] gnu: Add stalonetray

* gnu/packages/stalonetray.scm: New file
* gnu-system.am (GNU_SYSTEM_MODULES): Add stalonetray.scm
---
 gnu-system.am                |  1 +
 gnu/packages/stalonetray.scm | 49 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)
 create mode 100644 gnu/packages/stalonetray.scm

diff --git a/gnu-system.am b/gnu-system.am
index 1ffeee5..cc34dbc 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -190,6 +190,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/packages/smalltalk.scm			\
   gnu/packages/sqlite.scm			\
   gnu/packages/ssh.scm				\
+  gnu/packages/stalonetray.scm			\
   gnu/packages/swig.scm				\
   gnu/packages/tcl.scm				\
   gnu/packages/tcsh.scm				\
diff --git a/gnu/packages/stalonetray.scm b/gnu/packages/stalonetray.scm
new file mode 100644
index 0000000..4c30ab4
--- /dev/null
+++ b/gnu/packages/stalonetray.scm
@@ -0,0 +1,49 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix 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.
+;;;
+;;; GNU Guix 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 GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages stalonetray)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system gnu)
+  #:use-module ((guix licenses) #:select (gpl2+))
+  #:use-module (gnu packages xorg))
+
+(define-public stalonetray
+  (package
+    (name "stalonetray")
+    (version "0.8.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append
+         "http://sourceforge.net/projects/stalonetray/files/stalonetray/stalonetray-0.8.1/stalonetray-"
+         version ".tar.bz2"))
+       (sha256
+        (base32
+         "1wp8pnlv34w7xizj1vivnc3fkwqq4qgb9dbrsg15598iw85gi8ll"))))
+    (inputs `(("libx11" ,libx11)))
+    (build-system gnu-build-system)
+    (home-page "stalonetray")
+    (synopsis "Standalone freedesktop.org and KDE systray implementation")
+    (description
+     "Stalonetray is a stand-alone freedesktop.org and KDE system
+tray (notification area) for X Window System/X11 (e.g. X.Org or XFree86). It
+has full XEMBED support and minimal dependencies: an X11 lib only.  Stalonetray
+works with virtually any EWMH-compliant window manager."
+    (license gpl2+)))
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: Stalonetray package
  2014-02-09 15:38 Stalonetray package Raimon Grau
@ 2014-02-09 21:07 ` Ludovic Courtès
  2014-02-09 22:36   ` Raimon Grau
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2014-02-09 21:07 UTC (permalink / raw)
  To: Raimon Grau; +Cc: guix-devel

Raimon Grau <raimonster@gmail.com> skribis:

> From f5e2068da3b5dcad01fda7a959521e2cd85f13ea Mon Sep 17 00:00:00 2001
> From: Raimon Grau <raimonster@gmail.com>
> Date: Sun, 9 Feb 2014 16:28:39 +0100
> Subject: [PATCH] gnu: Add stalonetray
>
> * gnu/packages/stalonetray.scm: New file
> * gnu-system.am (GNU_SYSTEM_MODULES): Add stalonetray.scm

Applied, thanks!

> +       (uri
> +        (string-append
> +         "http://sourceforge.net/projects/stalonetray/files/stalonetray/stalonetray-0.8.1/stalonetray-"
> +         version ".tar.bz2"))

I changed that to use mirror://sourceforge instead, meaning that it can
use any SourceForge mirror when downloading.

> +    (description
> +     "Stalonetray is a stand-alone freedesktop.org and KDE system
> +tray (notification area) for X Window System/X11 (e.g. X.Org or XFree86). It
> +has full XEMBED support and minimal dependencies: an X11 lib only.  Stalonetray
> +works with virtually any EWMH-compliant window manager."

There was a missing parenthesis here.  :-)

Ludo’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Stalonetray package
  2014-02-09 21:07 ` Ludovic Courtès
@ 2014-02-09 22:36   ` Raimon Grau
  0 siblings, 0 replies; 3+ messages in thread
From: Raimon Grau @ 2014-02-09 22:36 UTC (permalink / raw)
  To: guix-devel

ludo@gnu.org (Ludovic Courtès) writes:

>> +       (uri
>> +        (string-append
>> +         "http://sourceforge.net/projects/stalonetray/files/stalonetray/stalonetray-0.8.1/stalonetray-"
>> +         version ".tar.bz2"))
>
> I changed that to use mirror://sourceforge instead, meaning that it can
> use any SourceForge mirror when downloading.

Aha, great. 

>> +    (description
>> +     "Stalonetray is a stand-alone freedesktop.org and KDE system
>> +tray (notification area) for X Window System/X11 (e.g. X.Org or XFree86). It
>> +has full XEMBED support and minimal dependencies: an X11 lib only.  Stalonetray
>> +works with virtually any EWMH-compliant window manager."
>
> There was a missing parenthesis here.  :-)

Oh, shame on me, I have to fix this paredit-not-loading in scm files already!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-02-09 22:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-09 15:38 Stalonetray package Raimon Grau
2014-02-09 21:07 ` Ludovic Courtès
2014-02-09 22:36   ` Raimon Grau

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).