summaryrefslogtreecommitdiffstats
path: root/pkgs/servers
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-22 15:12:27 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-22 15:12:27 +0100
commit19225b869015d37a14d7c6604a7ef89808d270eb (patch)
tree3cba29849ff4a462519702e76098b5e20f53cd2d /pkgs/servers
parent726db56d68cc5c017b9fe58600543825655f362e (diff)
!fixup add nixos tests to passthru.tests
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/irc/inspircd/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/servers/irc/inspircd/default.nix b/pkgs/servers/irc/inspircd/default.nix
index 6339ca67b939..f907e337ce6d 100644
--- a/pkgs/servers/irc/inspircd/default.nix
+++ b/pkgs/servers/irc/inspircd/default.nix
@@ -61,7 +61,7 @@ in
{ lib
, stdenv
, fetchFromGitHub
-, fetchpatch
+, nixosTests
, perl
, pkg-config
, libargon2
@@ -192,6 +192,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ passthru.tests = {
+ nixos-test = nixosTests.inspircd;
+ };
+
meta = {
description = "A modular C++ IRC server";
license = [ lib.licenses.gpl2Only ]