neo4j: add nixosTest to passthru

This commit is contained in:
Jonathan Ringer 2020-09-21 22:55:28 -07:00 committed by Jonathan Ringer
parent 0fbce25144
commit d5bd85278d

View File

@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, makeWrapper, openjdk11, which, gawk }:
{ stdenv, lib, fetchurl, nixosTests, makeWrapper, openjdk11, which, gawk }:
stdenv.mkDerivation rec {
pname = "neo4j";
@ -30,6 +30,8 @@ stdenv.mkDerivation rec {
$out/bin/neo4j-admin set-initial-password neo4j
'';
passthru.tests.nixos = nixosTests.neo4j;
meta = with lib; {
description = "A highly scalable, robust (fully ACID) native graph database";
homepage = "http://www.neo4j.org/";