summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-09-14 18:41:23 +0200
committerAndreas Enge <andreas@enge.fr>2025-09-14 18:43:04 +0200
commitfbe4c13dd4cc08f21109479b4a951ac74b299ce6 (patch)
tree408de0394cdfaa76db7ad023cca1ec02be2c1faa /gnu
parent55af1ceb7967d33f04dfb8bf2403f6bac9b5d5be (diff)
gnu: Remove irods module.
* gnu/packages/irods.scm: Remove file. * gnu/local.mk (GNU_SYSTEM_MODULES), po/packages/POTFILES.in: Unregister file. Fixes: guix/guix#1890 Change-Id: Ibf1120f67deea52950346cdcde39188ccbb6a696
Diffstat (limited to 'gnu')
-rw-r--r--gnu/local.mk1
-rw-r--r--gnu/packages/irods.scm45
2 files changed, 0 insertions, 46 deletions
diff --git a/gnu/local.mk b/gnu/local.mk
index c5767dcb9e5..87b8dd26df0 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -385,7 +385,6 @@ GNU_SYSTEM_MODULES = \
385 %D%/packages/instrumentation.scm \ 385 %D%/packages/instrumentation.scm \
386 %D%/packages/ipfs.scm \ 386 %D%/packages/ipfs.scm \
387 %D%/packages/irc.scm \ 387 %D%/packages/irc.scm \
388 %D%/packages/irods.scm \
389 %D%/packages/iso-codes.scm \ 388 %D%/packages/iso-codes.scm \
390 %D%/packages/jami.scm \ 389 %D%/packages/jami.scm \
391 %D%/packages/java.scm \ 390 %D%/packages/java.scm \
diff --git a/gnu/packages/irods.scm b/gnu/packages/irods.scm
deleted file mode 100644
index 08f4773cc63..00000000000
--- a/gnu/packages/irods.scm
+++ /dev/null
@@ -1,45 +0,0 @@
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages irods)
20 #:use-module ((guix licenses) #:prefix license:)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix git-download)
24 #:use-module (guix build-system cmake)
25 #:use-module (guix utils)
26 #:use-module (gnu packages)
27 #:use-module (gnu packages backup)
28 #:use-module (gnu packages base)
29 #:use-module (gnu packages boost)
30 #:use-module (gnu packages check)
31 #:use-module (gnu packages compression)
32 #:use-module (gnu packages cpp)
33 #:use-module (gnu packages databases)
34 #:use-module (gnu packages gcc)
35 #:use-module (gnu packages kerberos)
36 #:use-module (gnu packages linux)
37 #:use-module (gnu packages llvm)
38 #:use-module (gnu packages logging)
39 #:use-module (gnu packages man)
40 #:use-module (gnu packages networking)
41 #:use-module (gnu packages pretty-print)
42 #:use-module (gnu packages python)
43 #:use-module (gnu packages serialization)
44 #:use-module (gnu packages tls)
45 #:use-module (srfi srfi-1))