[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64176] [PATCH v2] gnu: Add nscde
From: |
Andy Tai |
Subject: |
[bug#64176] [PATCH v2] gnu: Add nscde |
Date: |
Sun, 25 Jun 2023 17:47:00 -0700 |
* gnu/packages/fvwm.scm (nscde): New variable
---
gnu/packages/fvwm.scm | 70 ++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 69 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/fvwm.scm b/gnu/packages/fvwm.scm
index 872810c658..6bda61b6d6 100644
--- a/gnu/packages/fvwm.scm
+++ b/gnu/packages/fvwm.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Nikita <nikita@n0.is>
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2023 Andy Tai <atai@atai.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -20,17 +21,30 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages fvwm)
- #:use-module ((guix licenses) #:select (gpl2+))
+ #:use-module ((guix licenses) #:select (gpl2+ gpl3))
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
+ #:use-module (gnu packages compton)
+ #:use-module (gnu packages dunst)
+ #:use-module (gnu packages fonts)
#:use-module (gnu packages fribidi)
+ #:use-module (gnu packages gettext)
+ #:use-module (gnu packages gkrellm)
#:use-module (gnu packages gnome)
+ #:use-module (gnu packages gtk)
#:use-module (gnu packages image)
+ #:use-module (gnu packages imagemagick)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python)
+ #:use-module (gnu packages python-xyz)
+ #:use-module (gnu packages qt)
#:use-module (gnu packages readline)
+ #:use-module (gnu packages shells)
+ #:use-module (gnu packages stalonetray)
#:use-module (gnu packages xml)
+ #:use-module (gnu packages xdisorg)
#:use-module (gnu packages xorg))
(define-public fvwm
@@ -81,3 +95,57 @@ (define-public fvwm
window manager for the X Window system.")
(home-page "https://www.fvwm.org/")
(license gpl2+)))
+
+(define-public nscde
+ (package
+ (name "nscde")
+ (version "2.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/NsCDE/NsCDE/releases/download/"
+ version "/NsCDE-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1bm607dvqfdc3ir7l1aswfsfyb2la7rgp0g3023b9v2iksaal5mr"))))
+ (build-system gnu-build-system)
+ (native-inputs (list pkg-config mksh))
+ (inputs (list gettext-minimal
+ fvwm
+ font-dejavu
+ fribidi
+ dunst
+ gkrellm
+ gtk+
+ imagemagick
+ libxpm
+ libxext
+ libxft
+ libxt
+ rofi
+ picom
+ python
+ python-pyyaml
+ python-qtpy
+ stalonetray
+ xclip
+ xdpyinfo
+ xorg-rgb
+ xprop
+ xrefresh
+ xscreensaver
+ xset
+ xsettingsd
+ xterm))
+ (synopsis "Modern and functional CDE desktop based on FVWM")
+ (description "NsCDE or Not so Common Desktop Environment is a retro but
+powerful UNIX desktop environment which resembles the CDE look (and partially
+feel) but with a more powerful and flexible framework beneath-the-surface,
+more suited for 21st century unix-like and GNU/Linux systems and user
requirements
+than original CDE. NsCDE is a heavyweight FVWM theme on steroids, but combined
+with a couple other free software components and custom FVWM applications and
+a lot of configuration, NsCDE can be considered a lightweight hybrid desktop
+environment")
+ (home-page "https://github.com/NsCDE/NsCDE")
+ (license gpl3)))
+
base-commit: 269cfe341f242c2b5f37774cb9b1e17d9aa68e2c
--
2.40.1