aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/git-unix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/git-unix/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/git-unix/default.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/git-unix/default.nix b/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/git-unix/default.nix
deleted file mode 100644
index 6ee6ef21c15e..000000000000
--- a/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/git-unix/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ stdenv, buildDunePackage, git-http, cohttp, cohttp-lwt-unix
-, mmap, cmdliner, mtime, alcotest, mirage-crypto-rng, tls
-, io-page, git-binary
-}:
-
-buildDunePackage {
- pname = "git-unix";
- inherit (git-http) version src minimumOCamlVersion;
-
- useDune2 = true;
-
- propagatedBuildInputs = [ mmap cmdliner git-http cohttp cohttp-lwt-unix mtime ];
- checkInputs = [ alcotest mirage-crypto-rng tls io-page git-binary ];
- doCheck = !stdenv.isAarch64;
-
- meta = {
- description = "Unix backend for the Git protocol(s)";
- inherit (git-http.meta) homepage license maintainers;
- };
-}