Fix depends specification

This commit is contained in:
Bryan Bennett 2024-03-23 08:16:51 -04:00
parent 606d717276
commit 358ae864fc
No known key found for this signature in database
GPG key ID: EE149E4215408DE9
2 changed files with 23 additions and 15 deletions

View file

@ -30,7 +30,6 @@ buildDunePackage {
./flake.lock
./flake_env.opam
./direnvrc
./LICENSE
];
};
duneVersion = "3";
@ -42,9 +41,16 @@ buildDunePackage {
postInstall = ''
install -m400 -D direnvrc $out/share/flake_env/direnvrc
'';
buildInputs = [
core
core_unix
ppx_yojson_conv
ppx_yojson_conv_lib
re
sha
];
checkInputs = [ alcotest bisect_ppx ];
nativeBuildInputs = [ reason ];
propagatedBuildInputs = [ core core_unix findlib ocaml ppx_yojson_conv ppx_yojson_conv_lib re sha ];
meta = with lib; {
description = "Yet another flake plugin for direnv";