about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2022-04-01 10:41:43 +0800
committerPeter Hoeg <peter@hoeg.com>2022-04-03 03:37:22 +0800
commitce05c3ae6b7ad230787b17562274716f0f36eb8c (patch)
tree7b11f0b6b37f5ae99829e361c64b7e05396ead85 /pkgs/applications
parente38cc45dd196bcbe177e6852b2f8ebc4bcca3bd7 (diff)
downloadnixlib-ce05c3ae6b7ad230787b17562274716f0f36eb8c.tar
nixlib-ce05c3ae6b7ad230787b17562274716f0f36eb8c.tar.gz
nixlib-ce05c3ae6b7ad230787b17562274716f0f36eb8c.tar.bz2
nixlib-ce05c3ae6b7ad230787b17562274716f0f36eb8c.tar.lz
nixlib-ce05c3ae6b7ad230787b17562274716f0f36eb8c.tar.xz
nixlib-ce05c3ae6b7ad230787b17562274716f0f36eb8c.tar.zst
nixlib-ce05c3ae6b7ad230787b17562274716f0f36eb8c.zip
maestral: add NixOS tests
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/maestral-qt/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/networking/maestral-qt/default.nix b/pkgs/applications/networking/maestral-qt/default.nix
index 2f0f3bd74ff1..9b87073f3f41 100644
--- a/pkgs/applications/networking/maestral-qt/default.nix
+++ b/pkgs/applications/networking/maestral-qt/default.nix
@@ -2,6 +2,7 @@
 , fetchFromGitHub
 , python3
 , wrapQtAppsHook
+, nixosTests
 }:
 
 python3.pkgs.buildPythonApplication rec {
@@ -44,6 +45,8 @@ python3.pkgs.buildPythonApplication rec {
 
   pythonImportsCheck = [ "maestral_qt" ];
 
+  passthru.tests.maestral = nixosTests.maestral;
+
   meta = with lib; {
     description = "GUI front-end for maestral (an open-source Dropbox client) for Linux";
     license = licenses.mit;