mirror of https://codeberg.org/hako/Rosenthal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space> |
|
;; |
|
;; SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
(define-module (rosenthal packages admin) |
|
#:use-module (guix gexp) |
|
#:use-module (guix packages) |
|
#:use-module (guix utils) |
|
#:use-module (gnu packages admin)) |
|
|
|
(define-public libseat-sans-logind |
|
(let ((base libseat)) |
|
(package |
|
(inherit base) |
|
(name "libseat-sans-logind") |
|
(arguments |
|
(substitute-keyword-arguments (package-arguments base) |
|
((#:configure-flags configure-flags) |
|
#~(append #$configure-flags |
|
(list "-Dlibseat-logind=disabled"))))) |
|
(propagated-inputs '())))) |
|
|
|
(define-public seatd-sans-logind |
|
(let ((base seatd)) |
|
(package |
|
(inherit base) |
|
(name "seatd-sans-logind") |
|
(arguments |
|
(substitute-keyword-arguments (package-arguments base) |
|
((#:configure-flags configure-flags) |
|
#~(append #$configure-flags |
|
(list "-Dlibseat-logind=disabled"))))) |
|
(propagated-inputs '()))))
|
|
|