summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-03-30 17:44:23 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-04-06 07:20:05 +0200
commit9bf28042f513bc7b54b7b4af5debaaf9a887478a (patch)
tree507bb94ffd9382e4cbca36dbc27d7f84f58f79e1 /pkgs/development/ocaml-modules
parentdad0ebc3d6bd81d5d4f210f45844a0ceb8fe53bb (diff)
downloadnixpkgs-9bf28042f513bc7b54b7b4af5debaaf9a887478a.tar
nixpkgs-9bf28042f513bc7b54b7b4af5debaaf9a887478a.tar.gz
nixpkgs-9bf28042f513bc7b54b7b4af5debaaf9a887478a.tar.bz2
nixpkgs-9bf28042f513bc7b54b7b4af5debaaf9a887478a.tar.lz
nixpkgs-9bf28042f513bc7b54b7b4af5debaaf9a887478a.tar.xz
nixpkgs-9bf28042f513bc7b54b7b4af5debaaf9a887478a.tar.zst
nixpkgs-9bf28042f513bc7b54b7b4af5debaaf9a887478a.zip
ocamlPackages.sqlite3EZ: remove at 0.1.0
Broken by a13cdfe520d87db401dd000fbd67cad728162a60
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/sqlite3EZ/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix
deleted file mode 100644
index 6009eaecce1..00000000000
--- a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, twt, ocaml_sqlite3 }:
-
-assert lib.versionAtLeast (lib.getVersion ocaml) "3.12";
-
-if lib.versionAtLeast ocaml.version "4.06"
-then throw "sqlite3EZ is not available for OCaml ${ocaml.version}"
-else
-
-stdenv.mkDerivation rec {
-  pname = "ocaml-sqlite3EZ";
-  version = "0.1.0";
-
-  src = fetchFromGitHub {
-    owner = "mlin";
-    repo = "ocaml-sqlite3EZ";
-    rev = "v${version}";
-    sha256 = "sha256-pKysvth0efxJeyJQY2Dnqarg7OtsKyyLnFV/1ZhsfDY=";
-  };
-
-  nativeBuildInputs = [ ocaml findlib ocamlbuild ];
-  buildInputs = [ twt ];
-
-  propagatedBuildInputs = [ ocaml_sqlite3 ];
-
-  strictDeps = true;
-
-  createFindlibDestdir = true;
-
-  meta = with lib; {
-    homepage = "https://github.com/mlin/ocaml-sqlite3EZ";
-    description = "A thin wrapper for sqlite3-ocaml with a simplified interface";
-    license = licenses.mit;
-    maintainers = [ maintainers.vbgl ];
-    platforms = ocaml.meta.platforms or [ ];
-  };
-}