summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-09-08 11:49:38 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-09-08 11:50:46 +0200
commit75900df417fc3d5e1b6bc64dd31e4c65e069dda1 (patch)
treea482fdde880ca71ccb4e98ae9a1ba94b5e287c75
parent059ee99ef4451a3663329daa596e6586191f2528 (diff)
downloadnixpkgs-75900df417fc3d5e1b6bc64dd31e4c65e069dda1.tar
nixpkgs-75900df417fc3d5e1b6bc64dd31e4c65e069dda1.tar.gz
nixpkgs-75900df417fc3d5e1b6bc64dd31e4c65e069dda1.tar.bz2
nixpkgs-75900df417fc3d5e1b6bc64dd31e4c65e069dda1.tar.lz
nixpkgs-75900df417fc3d5e1b6bc64dd31e4c65e069dda1.tar.xz
nixpkgs-75900df417fc3d5e1b6bc64dd31e4c65e069dda1.tar.zst
nixpkgs-75900df417fc3d5e1b6bc64dd31e4c65e069dda1.zip
ocamlPackages.awa: remove spurious dependency
-rw-r--r--pkgs/development/ocaml-modules/awa/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/awa/default.nix b/pkgs/development/ocaml-modules/awa/default.nix
index 4c92b58bdbc..f1fbd02ba0f 100644
--- a/pkgs/development/ocaml-modules/awa/default.nix
+++ b/pkgs/development/ocaml-modules/awa/default.nix
@@ -1,5 +1,5 @@
 { lib, buildDunePackage, fetchurl
-, ppx_sexp_conv, ppx_cstruct
+, ppx_sexp_conv
 , mirage-crypto, mirage-crypto-ec, mirage-crypto-rng, mirage-crypto-pk
 , x509, cstruct, cstruct-unix, cstruct-sexp, sexplib, eqaf
 , rresult, mtime, logs, fmt, cmdliner, base64
@@ -24,8 +24,6 @@ buildDunePackage rec {
     ppx_sexp_conv eqaf
   ];
 
-  buildInputs = [ ppx_cstruct ];
-
   doCheck = true;
   checkInputs = [ cstruct-unix cmdliner fmt ];