about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/ladybird
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2022-08-16 15:03:37 +0200
committerFrancesco Gazzetta <fgaz@fgaz.me>2022-09-26 17:04:52 +0200
commit2c81cda2f68c7eace8c42f294a0f7441fec56aac (patch)
treee769a494db5e0b9a6e60009d22080471a93490c6 /pkgs/applications/networking/browsers/ladybird
parentfb7bfd4970711f752fb5cfec7e4ac77434ce7303 (diff)
nixosTests.ladybird: init
Diffstat (limited to 'pkgs/applications/networking/browsers/ladybird')
-rw-r--r--pkgs/applications/networking/browsers/ladybird/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/ladybird/default.nix b/pkgs/applications/networking/browsers/ladybird/default.nix
index b4c2493c5cb0f..5cd7960810ceb 100644
--- a/pkgs/applications/networking/browsers/ladybird/default.nix
+++ b/pkgs/applications/networking/browsers/ladybird/default.nix
@@ -8,6 +8,7 @@
 , makeWrapper
 , qtbase
 , qttools
+, nixosTests
 }:
 
 let serenity = fetchFromGitHub {
@@ -82,6 +83,10 @@ in gcc11Stdenv.mkDerivation {
   # Stripping results in a symbol lookup error
   dontStrip = true;
 
+  passthru.tests = {
+    nixosTest = nixosTests.ladybird;
+  };
+
   meta = with lib; {
     description = "A browser using the SerenityOS LibWeb engine with a Qt GUI";
     homepage = "https://github.com/awesomekling/ladybird";