From fd20e1b7f33737c8fee5a4566ef1b339178e92cb Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Wed, 25 Sep 2024 21:56:14 -0400 Subject: [PATCH] rekahsoft-gnu: Add ceph This adds ceph, intended to be temporary until the ceph package upstream in guix is fixed. --- rekahsoft-gnu/packages/storage.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 rekahsoft-gnu/packages/storage.scm diff --git a/rekahsoft-gnu/packages/storage.scm b/rekahsoft-gnu/packages/storage.scm new file mode 100644 index 0000000..0f086ff --- /dev/null +++ b/rekahsoft-gnu/packages/storage.scm @@ -0,0 +1,25 @@ +;; (C) Copyright Collin J. Doering 2024 +;; +;; This program 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. +;; +;; This program 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 this program. If not, see . + +(define-module (rekahsoft-gnu packages storage) + #:use-module (guix packages) + #:use-module ((gnu packages storage) #:prefix guix:) + #:use-module (rekahsoft-gnu packages boost)) + +(define-public ceph + (package/inherit guix:ceph + (inputs + (modify-inputs (package-inputs guix:ceph) + (replace "boost" boost-for-ceph)))))