From d6b6b5f94f4dfe2e24583bdc2235b493afdc0095 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 3 May 2023 11:34:05 +0200 Subject: [PATCH] lowdown: add nix to passthru.tests --- pkgs/tools/typesetting/lowdown/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/tools/typesetting/lowdown/default.nix b/pkgs/tools/typesetting/lowdown/default.nix index e23173fdd3c3..bc60f8a33cab 100644 --- a/pkgs/tools/typesetting/lowdown/default.nix +++ b/pkgs/tools/typesetting/lowdown/default.nix @@ -1,6 +1,8 @@ { lib, stdenv, fetchurl, fixDarwinDylibNames, which , enableShared ? !(stdenv.hostPlatform.isStatic) , enableStatic ? stdenv.hostPlatform.isStatic +# for passthru.tests +, nix }: stdenv.mkDerivation rec { @@ -69,6 +71,11 @@ stdenv.mkDerivation rec { doCheck = true; checkTarget = "regress"; + passthru.tests = { + # most important consumer in nixpkgs + inherit nix; + }; + meta = with lib; { homepage = "https://kristaps.bsd.lv/lowdown/"; description = "Simple markdown translator";