roptat pushed a commit to branch master
in repository guix.
commit 476a16e173415662b7638883c23ae41cf5760dad
Author: Julien Lepiller <[email protected]>
AuthorDate: Sun Dec 24 14:16:14 2023 +0100
gnu: Remove ocaml4.07-sqlite3.
* gnu/packages/ocaml.scm (ocaml4.07-sqlite3): Remove variable.
(ocaml-sqlite3)[properties]: Remove variant.
Change-Id: I336d685ac271e50d0bb4ed0e41d0bcee38ee4686
---
gnu/packages/ocaml.scm | 27 ---------------------------
1 file changed, 27 deletions(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 2c7711f1b7..30a5b102d6 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2247,7 +2247,6 @@ library.")
(base32
"1ksm0a490315sf0yy8lmva5f3bgr0jnllffanyq89431grpj6x15"))))
(build-system dune-build-system)
- (properties `((ocaml4.07-variant . ,(delay ocaml4.07-sqlite3))))
(propagated-inputs
(list dune-configurator ocaml-odoc))
(native-inputs
@@ -2263,32 +2262,6 @@ coexistence with the old (version 2) SQLite and its
OCaml wrapper
@code{ocaml-sqlite}.")
(license license:expat)))
-(define-public ocaml4.07-sqlite3
- (package-with-ocaml4.07
- (package
- (inherit ocaml-sqlite3)
- (version "5.0.2")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/mmottl/sqlite3-ocaml")
- (commit version)))
- (file-name (git-file-name "ocaml-sqlite3" version))
- (sha256
- (base32
- "15mmq7ak5facpfawfrc6hjz211gli7jab52iqdsihfvh790xm55f"))))
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-before 'build 'chmod
- (lambda _
- (for-each (lambda (file) (chmod file #o644)) (find-files "."
".*"))
- #t)))))
- (propagated-inputs
- `(("ocaml-odoc" ,ocaml-odoc)))
- (properties '()))))
-
(define-public ocaml-csv
(package
(name "ocaml-csv")