;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Sou Bunnbu ;;; Copyright © 2016, 2023 Efraim Flashner ;;; Copyright © 2017 Nikita ;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; ;;; 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 . (define-module (gnu packages fvwm) #:use-module ((guix licenses) #:select (gpl2+)) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages fribidi) #:use-module (gnu packages gnome) #:use-module (gnu packages image) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages readline) #:use-module (gnu packages xml) #:use-module (gnu packages xorg)) (define-public fvwm (package (name "fvwm") (version "2.7.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/fvwmorg/fvwm/releases/download/" version "/fvwm-" version ".tar.gz")) (sha256 (base32 "12s1wgkvrvl8m62gpb2918izfx9ysj7hgn9p00blfi3p1gb6v0k6")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases (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) (make-desktop-entry-file (string-append xsessions "/fvwm2.desktop") #:name "FVWM" #:exec (string-append out "/bin/" ,name) #:comment '("FVWM"))) #t))))) (native-inputs `(("perl" ,perl) ("pkg-config" ,pkg-config) ("xsltproc" ,libxslt))) (inputs (list fribidi libpng (librsvg-for-system) libxcursor libxext libxft libxinerama libxpm libxt readline)) (synopsis "Virtual window manager for X11") (description "FVWM is an extremely powerful ICCCM-compliant multiple virtual desktop window manager for the X Window system.") (home-page "https://www.fvwm.org/") (license gpl2+))) /guix/commit/gnu/packages/openbox.scm?id=e3196755e60ba7f1ed9d432e73f26a85e0c8893c'>gnu: Further simplify package inputs.Ludovic Courtès 2021-12-13gnu: Simplify package inputs.Ludovic Courtès 2021-12-05gnu: openbox: Use 'librsvg-for-system'.Ludovic Courtès 2021-11-26gnu: openbox: Keep librsvg dependency on x86_64 only.Ludovic Courtès 2020-05-13mailmap: Update entries for Nikita.nikita openldap: Fix build.Brian Cully 2023-04-14gnu: openldap: Update to 2.6.3.Maxim Cournoyer 2023-04-08gnu: Add openldap-for-linphone.Ricardo Wurmus 2023-01-30Merge remote-tracking branch 'origin/master' into core-updatesEfraim Flashner 2022-12-14gnu: 389-ds-base: Avoid dependency on systemd-detect-virt.Ricardo Wurmus 2022-12-14gnu: 389-ds-base: Enable one test.Ricardo Wurmus 2022-12-14gnu: 389-ds-base: Use gexp.Ricardo Wurmus 2022-12-14gnu: 389-ds-base: Update to 2.2.2.Ricardo Wurmus 2022-12-14gnu: 389-ds-base: Update to 1.4.5.0.Ricardo Wurmus 2022-12-14gnu: 389-ds-base: Drop input labels.Ricardo Wurmus 2022-12-12gnu: OpenLDAP: Update to 2.6.3.Marius Bakke