gnu: Remove ocaml4.07-sqlite3.

* gnu/packages/ocaml.scm (ocaml4.07-sqlite3): Remove variable.
(ocaml-sqlite3)[properties]: Remove variant.

Change-Id: I336d685ac271e50d0bb4ed0e41d0bcee38ee4686
This commit is contained in:
Julien Lepiller 2023-12-24 14:16:14 +01:00
parent 5823552c19
commit 476a16e173
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82

View file

@ -2247,7 +2247,6 @@ (define-public ocaml-sqlite3
(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 @@ (define-public ocaml-sqlite3
@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")