diff options
author | Julien Lepiller <julien@lepiller.eu> | 2023-12-24 14:16:14 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2023-12-30 22:09:20 +0100 |
commit | 476a16e173415662b7638883c23ae41cf5760dad (patch) | |
tree | f4c9302650c6ef69ffdb30ffaf2fe2db5e1b6a8f /gnu | |
parent | 5823552c19dc2fbf054b05515d092081bc40f698 (diff) | |
download | guix-476a16e173415662b7638883c23ae41cf5760dad.tar guix-476a16e173415662b7638883c23ae41cf5760dad.tar.gz |
gnu: Remove ocaml4.07-sqlite3.
* gnu/packages/ocaml.scm (ocaml4.07-sqlite3): Remove variable.
(ocaml-sqlite3)[properties]: Remove variant.
Change-Id: I336d685ac271e50d0bb4ed0e41d0bcee38ee4686
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ocaml.scm | 27 |
1 files changed, 0 insertions, 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") |