about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-03-26 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-03-26 04:20:00 +0000
commit8d02422093330569723b92dbad086f803b2f081a (patch)
treeac7be149806b393d14d8a6c00bdcc10415418922
parent3a4ba9e8ea7eb26e68adae559aadb13f76d7ad77 (diff)
ocamlPackages.csexp: add liquidsoap as reverse dependency to passthru.tests
-rw-r--r--pkgs/development/ocaml-modules/csexp/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/csexp/default.nix b/pkgs/development/ocaml-modules/csexp/default.nix
index 4f72a3c09544e..e819627807510 100644
--- a/pkgs/development/ocaml-modules/csexp/default.nix
+++ b/pkgs/development/ocaml-modules/csexp/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchurl, buildDunePackage }:
+{ lib, fetchurl, buildDunePackage, liquidsoap }:
 
 buildDunePackage rec {
   pname = "csexp";
@@ -11,6 +11,10 @@ buildDunePackage rec {
 
   minimalOCamlVersion = "4.03";
 
+  passthru.tests = {
+    inherit liquidsoap;
+  };
+
   meta = with lib; {
     description = "Minimal support for Canonical S-expressions";
     homepage = "https://github.com/ocaml-dune/csexp";