2014-03-18 19:18:04 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
2017-08-27 22:27:56 -04:00
|
|
|
;;; Copyright © 2016, 2017 Kei Kebreau <kkebreau@posteo.net>
|
2018-02-15 17:30:03 -05:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-11-10 17:37:48 -05:00
|
|
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
2022-05-10 07:57:17 -04:00
|
|
|
;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
|
2014-03-18 19:18:04 -04:00
|
|
|
;;;
|
|
|
|
;;; 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 gnustep)
|
|
|
|
#:use-module (guix download)
|
2022-03-26 13:11:15 -04:00
|
|
|
#:use-module (guix git-download)
|
|
|
|
#:use-module (guix gexp)
|
2014-03-18 19:18:04 -04:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix build-system gnu)
|
2022-03-26 13:11:15 -04:00
|
|
|
#:use-module (guix build-system cmake)
|
2022-05-10 07:57:17 -04:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2017-04-23 14:04:41 -04:00
|
|
|
#:use-module (gnu packages)
|
2017-04-22 20:36:36 -04:00
|
|
|
#:use-module (gnu packages base)
|
2022-03-26 13:11:15 -04:00
|
|
|
#:use-module (gnu packages datastructures)
|
2014-03-18 19:18:04 -04:00
|
|
|
#:use-module (gnu packages xorg)
|
2017-04-22 20:36:36 -04:00
|
|
|
#:use-module (gnu packages libffcall)
|
2022-03-26 13:11:15 -04:00
|
|
|
#:use-module (gnu packages gcc)
|
2016-04-04 16:59:02 -04:00
|
|
|
#:use-module (gnu packages gnome)
|
2016-05-07 14:20:35 -04:00
|
|
|
#:use-module (gnu packages gtk)
|
2022-03-26 13:11:15 -04:00
|
|
|
#:use-module (gnu packages llvm)
|
2016-04-04 16:59:02 -04:00
|
|
|
#:use-module (gnu packages texinfo)
|
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
#:use-module (gnu packages glib)
|
2014-03-18 19:18:04 -04:00
|
|
|
#:use-module (gnu packages fontutils)
|
gnu: Consolidate libjpeg, libpng, and libtiff into one module.
* gnu/packages/image.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add image.scm and remove libjpeg.scm,
libpng.scm, and libtiff.scm.
* gnu/packages/libjpeg.scm, gnu/packages/libpng.scm, gnu/packages/libtiff.scm:
Delete files.
* gnu/packages/emacs.scm gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnustep.scm, gnu/packages/gnuzilla.scm,
gnu/packages/graphviz.scm, gnu/packages/gtk.scm,
gnu/packages/imagemagick.scm, gnu/packages/inkscape.scm,
gnu/packages/netpbm.scm, gnu/packages/pdf.scm, gnu/packages/plotutils.scm,
gnu/packages/qemu.scm, gnu/packages/qt.scm, gnu/packages/scheme.scm,
gnu/packages/sdl.scm, gnu/packages/slim.scm, gnu/packages/tcl.scm,
gnu/packages/texlive.scm, gnu/packages/video.scm, gnu/packages/xiph.scm,
gnu/packages/xorg.scm: Use (gnu packages image) module.
2014-06-25 08:39:02 -04:00
|
|
|
#:use-module (gnu packages image)
|
2017-04-22 20:36:36 -04:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2017-12-02 19:43:08 -05:00
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
#:use-module (ice-9 match))
|
2017-04-22 20:36:36 -04:00
|
|
|
|
|
|
|
(define-public gnustep-make
|
|
|
|
(package
|
|
|
|
(name "gnustep-make")
|
|
|
|
(version "2.7.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "ftp://ftp.gnustep.org/pub/gnustep/core/"
|
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1khiygfkz0zhh9b5nybn40g0xnnjxchk24n49hff1bwanszir84h"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f)) ; no check target
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list which))
|
2017-04-22 20:36:36 -04:00
|
|
|
(home-page "http://gnustep.org")
|
|
|
|
(synopsis "GNUstep make package")
|
|
|
|
(description "The makefile package is a simple, powerful and extensible way
|
|
|
|
to write makefiles for a GNUstep-based project. It allows the user to write a
|
|
|
|
project without having to deal with the complex issues associated with
|
|
|
|
configuration, building, installation, and packaging. It also allows the user
|
|
|
|
to easily create cross-compiled binaries.")
|
2022-05-10 07:57:17 -04:00
|
|
|
(license license:gpl3+)))
|
2014-03-18 19:18:04 -04:00
|
|
|
|
2022-03-26 13:11:15 -04:00
|
|
|
(define-public libobjc2
|
|
|
|
(package
|
|
|
|
(name "libobjc2")
|
|
|
|
(version "2.1")
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/gnustep/libobjc2")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1zjryzvy06gjf36gz6zrkg9icwz6wsf80mp94x6bq1109vkl40b5"))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(patches
|
|
|
|
(search-patches "libobjc2-unbundle-robin-map.patch"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
(list
|
|
|
|
;; XXX: Cannot use GCC to compile ObjC code due to
|
|
|
|
;; https://issues.guix.gnu.org/29644.
|
|
|
|
#:configure-flags #~(list "-DCMAKE_C_COMPILER=clang"
|
|
|
|
"-DCMAKE_CXX_COMPILER=clang++")))
|
|
|
|
(inputs
|
|
|
|
(list clang robin-map))
|
|
|
|
(home-page "http://www.gnustep.org/")
|
|
|
|
(synopsis "Objective-C runtime library for Clang")
|
|
|
|
(description "Libobjc2 is an Objective-C runtime library designed as a
|
2022-05-21 20:00:00 -04:00
|
|
|
drop-in replacement for GCC runtime. It supports following features beyond
|
2022-03-26 13:11:15 -04:00
|
|
|
GCC runtime.
|
|
|
|
|
|
|
|
@itemize
|
|
|
|
@item Modern Objective-C runtime APIs.
|
|
|
|
@item Blocks (Closures).
|
|
|
|
@item Synthesised property accessors.
|
|
|
|
@item Efficient support for @code{@@synchronized()}.
|
|
|
|
@item Type-dependent dispatch.
|
|
|
|
@item Associated reference API.
|
|
|
|
@item Automatic Reference Counting.
|
|
|
|
@end itemize")
|
|
|
|
(license license:expat)))
|
|
|
|
|
2014-03-18 19:18:04 -04:00
|
|
|
(define-public windowmaker
|
|
|
|
(package
|
|
|
|
(name "windowmaker")
|
2020-07-14 23:34:43 -04:00
|
|
|
(version "0.95.9")
|
2017-12-02 19:43:08 -05:00
|
|
|
(synopsis "NeXTSTEP-like window manager")
|
2014-03-18 19:18:04 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2020-07-14 23:34:43 -04:00
|
|
|
"https://github.com/window-maker/wmaker/releases/download/"
|
|
|
|
"wmaker-" version "/WindowMaker-" version ".tar.gz"))
|
2014-03-18 19:18:04 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2020-07-14 23:34:43 -04:00
|
|
|
"055pqvlkhipyjn7m6bb3fs4zz9rd1ynzl0mmwbhp05ihc3zmh8zj"))))
|
2014-03-18 19:18:04 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2017-12-02 19:43:08 -05:00
|
|
|
`(#:modules ((guix build gnu-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(ice-9 match))
|
|
|
|
#:phases
|
2017-03-14 02:14:32 -04:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'pre-configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; 'wmaker' wants to invoke 'wmaker.inst' the first time,
|
|
|
|
;; and the 'wmsetbg', so make sure it uses the right ones.
|
|
|
|
;; We can't use a wrapper here because that would pollute
|
|
|
|
;; $PATH in the whole session.
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
(substitute* "src/main.c"
|
|
|
|
(("\"wmaker\\.inst")
|
|
|
|
(string-append "\"" bin "/wmaker.inst")))
|
|
|
|
(substitute* '("src/defaults.c" "WPrefs.app/Menu.c")
|
|
|
|
(("\"wmsetbg")
|
|
|
|
(string-append "\"" bin "/wmsetbg")))
|
|
|
|
;; Add enough cells to the command character array to
|
|
|
|
;; allow passing our large path to the wmsetbg binary.
|
|
|
|
;; The path to wmsetbg in Guix requires 67 extra characters.
|
|
|
|
(substitute* "src/defaults.c"
|
|
|
|
(("len = strlen\\(text\\) \\+ 40;")
|
2018-02-15 17:28:51 -05:00
|
|
|
(string-append "len = strlen(text) + 107;")))
|
|
|
|
#t)))
|
2017-12-02 19:43:08 -05:00
|
|
|
(add-after 'install 'install-xsession
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(xsessions (string-append out "/share/xsessions")))
|
|
|
|
(mkdir-p xsessions)
|
|
|
|
(call-with-output-file
|
|
|
|
(string-append xsessions "/windowmaker.desktop")
|
|
|
|
(lambda (port)
|
2020-07-14 23:34:43 -04:00
|
|
|
(format port "~
|
2017-12-02 19:43:08 -05:00
|
|
|
[Desktop Entry]~@
|
|
|
|
Name=Window Maker~@
|
|
|
|
Comment=~a~@
|
|
|
|
Exec=~a/bin/wmaker~@
|
|
|
|
Type=Application~%"
|
2020-07-14 23:34:43 -04:00
|
|
|
(string-map (match-lambda
|
|
|
|
(#\newline #\space)
|
|
|
|
(chr chr))
|
|
|
|
,synopsis) out))))
|
2017-12-02 19:43:08 -05:00
|
|
|
#t))
|
|
|
|
(add-after 'install-xsession 'wrap
|
2020-07-14 23:34:43 -04:00
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
;; In turn, 'wmaker.inst' wants to invoke 'wmmenugen'
|
|
|
|
;; etc., so make sure everything is in $PATH.
|
|
|
|
(wrap-program (string-append bin "/wmaker.inst")
|
|
|
|
`("PATH" ":" prefix (,bin)))
|
|
|
|
#t))))))
|
2014-03-18 19:18:04 -04:00
|
|
|
(inputs
|
|
|
|
`(("libxmu" ,libxmu)
|
|
|
|
("libxft" ,libxft)
|
|
|
|
("libx11" ,libx11)
|
2017-12-02 20:20:45 -05:00
|
|
|
("libxinerama" ,libxinerama)
|
2014-03-18 19:18:04 -04:00
|
|
|
("fontconfig" ,fontconfig)
|
gnu: Replace uses of 'libjpeg' with 'libjpeg-turbo'.
* gnu/packages/abiword.scm (abiword)[inputs]: Change from LIBJPEG to
LIBJPEG-TURBO.
* gnu/packages/admin.scm (testdisk)[inputs]: Likewise.
* gnu/packages/algebra.scm (giac)[inputs]: Likewise.
* gnu/packages/animation.scm (synfig)[inputs]: Likewise.
* gnu/packages/astronomy.scm (gnuastro, celestia)[inputs]: Likewise.
* gnu/packages/cdrom.scm (dvdstyler)[inputs]: Likewise.
* gnu/packages/cran.scm (r-jpeg, r-tiff, r-readbitmap)[inputs]: Likewise.
* gnu/packages/cups.scm (cups-filters, hplip)[inputs]: Likewise.
* gnu/packages/display-managers.scm (slim)[inputs]: Likewise.
* gnu/packages/ebook.scm (fbreader)[inputs]: Likewise.
* gnu/packages/emacs.scm (emacs)[inputs]: Likewise.
* gnu/packages/enlightenment.scm (efl)[propagated-inputs]: Likewise.
* gnu/packages/fltk.scm (fltk, ntk)[inputs]: Likewise.
* gnu/packages/fontutils.scm (fontforge)[inputs]: Likewise.
* gnu/packages/freedesktop.scm (weston)[inputs]: Likewise.
* gnu/packages/game-development.scm (sfml, allegro, aseprite, python-pygame,
eureka, ioquake3)[inputs]: Likewise.
* gnu/packages/games.scm (adanaxisgpl, freedroidrpg, irrlicht, minetest,
fizmo, supertuxkart, gzdoom, xmoto, xonotic)[inputs]: Likewise.
* gnu/packages/gd.scm (gd, perl-gd)[inputs]: Likewise.
* gnu/packages/ghostscript.scm (lcms)[inputs]: Likewise.
(ghostscript)[inputs, native-inputs]: Likewise.
* gnu/packages/gimp.scm (gegl, gimp)[inputs]: Likewise.
* gnu/packages/gnome.scm (libgnomeui, eog, tracker-miners, gthumb)[inputs]: Likewise.
* gnu/packages/gnunet.scm (libextractor)[inputs]: Likewise.
* gnu/packages/gnustep.scm (windowmaker)[inputs]: Likewise.
* gnu/packages/graphics.scm (blender, blender-2.79, openimageio,
openscenegraph, openscenegraph-3.4, povray, fgallery)[inputs]: Likewise.
* gnu/packages/graphviz.scm (graphviz)[inputs]: Likewise.
* gnu/packages/gstreamer.scm (gst-plugins-good)[inputs]: Likewise.
* gnu/packages/gtk.scm (gdk-pixbuf)[inputs]: Likewise.
* gnu/packages/image-processing.scm (dcmtk, mia, vtk, opencv, vips, nip2, vxl,
insight-toolkit)[inputs]: Likewise.
* gnu/packages/image-viewers.scm (gpicview, luminance-hdr)[inputs]: Likewise.
* gnu/packages/image.scm (jpegoptim, libtiff, leptonica, imlib2, freeimage,
vigra, libwebp, libmng, jasper, steghide, jp2a)[inputs]: Likewise.
* gnu/packages/imagemagick.scm (imagemagick, graphicsmagick)[inputs]: Likewise.
* gnu/packages/java.scm (icedtea-6, icedtea-7, openjdk9, openjdk11,
openjdk12)[inputs]: Likewise.
* gnu/packages/kde-frameworks.scm (khtml)[inputs]: Likewise.
* gnu/packages/kodi.scm (kodi)[inputs]: Likewise.
* gnu/packages/machine-learning.scm (dlib, tensorflow)[inputs]: Likewise.
* gnu/packages/mate.scm (atril, eom)[inputs]: Likewise.
* gnu/packages/maths.scm (hdf4, hdf-java, hdf-eos2, netcdf)[inputs]: Likewise.
* gnu/packages/netpbm.scm (netpbm)[inputs]: Likewise.
* gnu/packages/pdf.scm (zathura-pdf-mupdf, podofo, mupdf, fbida)[inputs]: Likewise.
* gnu/packages/photo.scm (libraw, libpano13, enblend-enfuse, darktable, hugin,
rawtherapee)[inputs]: Likewise.
* gnu/packages/prolog.scm (swi-prolog)[native-inputs]: Likewise.
* gnu/packages/python-xyz.scm (python-hdf4, python-pillow)[inputs]: Likewise.
* gnu/packages/qt.scm (qtbase, qtwebkit)[inputs]: Likewise.
* gnu/packages/rdesktop.scm (freerdp)[inputs]: Likewise.
* gnu/packages/scanner.scm (sane-backends, xsane)[inputs]: Likewise.
* gnu/packages/scheme.scm (racket)[inputs]: Likewise.
* gnu/packages/scribus.scm (scribus)[inputs]: Likewise.
* gnu/packages/sdl.scm (sdl-image)[propagated-inputs]: Likewise.
(guile-sdl)[native-inputs]: Likewise.
* gnu/packages/spice.scm (spice-gtk)[inputs]: Likewise.
* gnu/packages/statistics.scm (r-with-tests)[inputs]: Likewise.
* gnu/packages/tcl.scm (perl-tk)[inputs]: Likewise.
* gnu/packages/upnp.scm (readymedia)[inputs]: Likewise.
* gnu/packages/video.scm (mplayer, mpv, v4l-utils, motion)[inputs]: Likewise.
* gnu/packages/web-browsers.scm (dillo, links)[inputs]: Likewise.
* gnu/packages/web.scm (netsurf)[inputs]: Likewise.
* gnu/packages/webkit.scm (webkitgtk)[inputs]: Likewise.
* gnu/packages/wine.scm (wine)[inputs]: Likewise.
* gnu/packages/wv.scm (wv)[inputs]: Likewise.
* gnu/packages/wxwidgets.scm (wxwidgets, wxwidgets-2)[inputs]: Likewise.
* gnu/packages/xdisorg.scm (xscreensaver)[inputs]: Likewise.
* gnu/packages/xfce.scm (tumbler)[inputs]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[inputs]: Likewise.
* gnu/packages/xorg.scm (xpra)[inputs]: Likewise.
2020-01-17 13:27:01 -05:00
|
|
|
("libjpeg" ,libjpeg-turbo)
|
2016-10-23 11:26:25 -04:00
|
|
|
("giflib" ,giflib)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("libtiff" ,libtiff)))
|
2014-03-18 19:18:04 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list pkg-config))
|
2020-07-14 23:34:43 -04:00
|
|
|
(home-page "https://windowmaker.org/")
|
2014-03-18 19:18:04 -04:00
|
|
|
(description
|
|
|
|
"Window Maker is an X11 window manager originally designed to provide
|
|
|
|
integration support for the GNUstep Desktop Environment. In every way
|
|
|
|
possible, it reproduces the elegant look and feel of the NeXTSTEP user
|
|
|
|
interface. It is fast, feature rich, easy to configure, and easy to use.")
|
|
|
|
|
|
|
|
;; Artwork is distributed under the WTFPL.
|
2022-05-10 07:57:17 -04:00
|
|
|
(license license:gpl2+)))
|
2016-04-04 16:59:02 -04:00
|
|
|
|
|
|
|
(define-public wmbattery
|
|
|
|
(package
|
|
|
|
(name "wmbattery")
|
2020-05-20 14:57:19 -04:00
|
|
|
(version "2.54")
|
2016-04-04 16:59:02 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://debian/pool/main/w/wmbattery/wmbattery_"
|
|
|
|
version ".orig.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-05-20 14:57:19 -04:00
|
|
|
"1r4n58mwkm69y1pjs7l64hg8r1lpndrzyrfl2rdgd4zi6v0jhyyw"))))
|
2016-04-04 16:59:02 -04:00
|
|
|
(build-system gnu-build-system)
|
2018-11-10 17:37:48 -05:00
|
|
|
(arguments '(#:tests? #f)) ; no "check" target
|
2016-04-04 16:59:02 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list glib libx11 libxext libxpm upower))
|
2016-04-04 16:59:02 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list pkg-config))
|
2020-01-18 18:20:09 -05:00
|
|
|
(home-page "https://www.dockapps.net/wmbattery")
|
2016-04-04 16:59:02 -04:00
|
|
|
(synopsis "Display laptop battery info")
|
|
|
|
(description
|
|
|
|
"Wmbattery displays the status of your laptop's battery in a small icon.
|
|
|
|
This includes if it is plugged in, if the battery is charging, how many minutes
|
|
|
|
of battery life remain, battery life remaining (with both a percentage and a
|
|
|
|
graph), and battery status (high - green, low - yellow, or critical - red).")
|
2022-05-10 07:57:17 -04:00
|
|
|
(license license:gpl2)))
|
2016-04-04 16:59:02 -04:00
|
|
|
|
2016-04-05 16:34:48 -04:00
|
|
|
(define-public wmnd
|
|
|
|
(package
|
|
|
|
(name "wmnd")
|
2020-08-04 12:01:31 -04:00
|
|
|
(version "0.4.18")
|
2016-04-05 16:34:48 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://www.thregr.org/~wavexx/software/wmnd/releases/"
|
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-08-04 12:01:31 -04:00
|
|
|
"01s37d8cfpncza1mlw13ar4rcwbrc1vgaj3ifhglmlcnzvvayg0n"))))
|
2016-04-05 16:34:48 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list libx11 libxext libxpm))
|
2016-04-05 16:34:48 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list pkg-config))
|
2016-04-05 16:34:48 -04:00
|
|
|
(home-page "http://www.thregr.org/~wavexx/software/wmnd/")
|
|
|
|
(synopsis "Network interface monitor")
|
|
|
|
(description
|
|
|
|
"WMND is a dockapp for monitoring network interfaces under WindowMaker and
|
|
|
|
other compatible window managers.")
|
2022-05-10 07:57:17 -04:00
|
|
|
(license license:gpl2+)))
|
2016-04-06 13:50:36 -04:00
|
|
|
|
|
|
|
(define-public wmcpuload
|
|
|
|
(package
|
|
|
|
(name "wmcpuload")
|
2018-02-15 14:29:26 -05:00
|
|
|
(version "1.1.1")
|
2016-04-06 13:50:36 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://debian/pool/main/w/wmcpuload/"
|
|
|
|
name "_" version ".orig.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-02-15 14:29:26 -05:00
|
|
|
"1334y0axnxydwv05d172f405iljrfakg4kcyg9kmn46v6ywv424g"))))
|
2016-04-06 13:50:36 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list libx11 libxext libxpm))
|
2016-04-06 13:50:36 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list pkg-config))
|
2020-01-18 18:20:09 -05:00
|
|
|
(home-page "https://www.dockapps.net/wmcpuload")
|
2016-04-06 13:50:36 -04:00
|
|
|
(synopsis "Monitor CPU usage")
|
|
|
|
(description
|
|
|
|
"Wmcpuload displays the current CPU usage, expressed as a percentile and a
|
|
|
|
chart, and has an LCD look-alike user interface. The back-light may be turned
|
|
|
|
on and off by clicking the mouse button over the application. If the CPU usage
|
|
|
|
hits a certain threshold, an alarm-mode will alert you by turning back-light
|
|
|
|
on.")
|
2022-05-10 07:57:17 -04:00
|
|
|
(license license:gpl2+)))
|
2016-04-08 09:34:02 -04:00
|
|
|
|
|
|
|
(define-public wmclock
|
|
|
|
(package
|
|
|
|
(name "wmclock")
|
|
|
|
(version "1.0.16")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://debian/pool/main/w/wmclock/"
|
|
|
|
name "_" version ".orig.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1lx276ba8r2yydhmwj1g586jdqg695ad89ng36fr3mb067gvb2rz"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list libx11 libxext libxpm))
|
2018-11-10 17:40:14 -05:00
|
|
|
;; wmclock requires autoreconf to generate its configure script.
|
2016-04-08 09:34:02 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list autoconf automake pkg-config))
|
2020-01-18 18:20:09 -05:00
|
|
|
(home-page "https://www.dockapps.net/wmclock")
|
2016-04-08 09:34:02 -04:00
|
|
|
(synopsis "Display the date and time")
|
|
|
|
(description
|
|
|
|
"wmclock is an applet for Window Maker which displays the date and time in
|
|
|
|
a dockable tile. It features multiple language support, 24h or 12h time
|
|
|
|
display, and can run a user-specified program on mouse click.")
|
2022-05-10 07:57:17 -04:00
|
|
|
(license license:gpl2+)))
|
2016-05-07 14:20:35 -04:00
|
|
|
|
|
|
|
(define-public wmfire
|
|
|
|
(package
|
|
|
|
(name "wmfire")
|
|
|
|
(version "1.2.4")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.improbability.net/"
|
|
|
|
name "/" name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-04-23 14:04:41 -04:00
|
|
|
"101grahd80n97y2dczb629clmcgiavdpbbwy78kk5wgs362m12z3"))
|
|
|
|
(patches
|
|
|
|
(search-patches "wmfire-update-for-new-gdk-versions.patch"))))
|
2016-05-07 14:20:35 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gtk+-2 libgtop))
|
2016-05-07 14:20:35 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list pkg-config))
|
2016-05-07 14:20:35 -04:00
|
|
|
(home-page "http://www.improbability.net/")
|
2016-07-29 04:23:52 -04:00
|
|
|
(synopsis "Display flames to represent resource usage")
|
2016-05-07 14:20:35 -04:00
|
|
|
(description
|
|
|
|
"wmfire is an applet for Window Maker that can monitor the average cpu
|
|
|
|
load, or individual cpu load on SMP computers. Additionally it can monitor the
|
|
|
|
memory, network load, a file or just be set to show a pretty flame. On
|
|
|
|
entering the dock a burning spot replaces the cursor, and after two seconds
|
|
|
|
symbols to represent the current monitor are \"burnt\" onscreen. The flame
|
|
|
|
colour can also be changed.")
|
2022-05-10 07:57:17 -04:00
|
|
|
(license license:gpl2+)))
|