plantuml-server: add nixosTest to passthru.tests

This commit is contained in:
Anthony Roussel 2023-11-14 23:09:47 +01:00
parent 2b455c1649
commit b7851eed07
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, nixosTests }:
let
version = "1.2023.12";
@ -17,6 +17,10 @@ stdenv.mkDerivation rec {
cp "$src" "$out/webapps/plantuml.war"
'';
passthru.tests = {
inherit (nixosTests) plantuml-server;
};
meta = with lib; {
description = "A web application to generate UML diagrams on-the-fly.";
homepage = "https://plantuml.com/";