summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2021-05-09 09:31:27 +0200
committerVladimír Čunát <v@cunat.cz>2021-05-09 09:31:55 +0200
commit5663b2b2d385c06bffeb8514dec22d5e2838bdcb (patch)
tree6bfa3064e3b40ed97da05c5c8a48bfa63360ab91 /pkgs/development/ocaml-modules
parent9f024e4c929bee8ed4a45a39e8fc5d5ff9bf7185 (diff)
parent90c2fb1f2fd0ef3f0e453bc8cd6b28866e079aa0 (diff)
Merge branch 'master' into staging-next
(a trivial conflict in transmission)
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/atd/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/atd/default.nix b/pkgs/development/ocaml-modules/atd/default.nix
index 2f85221e539c6..de6ade61518a7 100644
--- a/pkgs/development/ocaml-modules/atd/default.nix
+++ b/pkgs/development/ocaml-modules/atd/default.nix
@@ -1,4 +1,4 @@
-{ lib, menhir, easy-format, fetchurl, buildDunePackage, which, re }:
+{ lib, menhir, easy-format, fetchurl, buildDunePackage, which, re, nixosTests }:
 
 buildDunePackage rec {
   pname = "atd";
@@ -18,6 +18,10 @@ buildDunePackage rec {
 
   doCheck = true;
 
+  passthru.tests = {
+    smoke-test = nixosTests.atd;
+  };
+
   meta = with lib; {
     homepage = "https://github.com/mjambon/atd";
     description = "Syntax for cross-language type definitions";