about summary refs log tree commit diff
path: root/pkgs/by-name/sc
diff options
context:
space:
mode:
authormatthewcroughan <matt@croughan.sh>2024-03-27 08:02:52 +0000
committermatthewcroughan <matt@croughan.sh>2024-03-27 08:02:59 +0000
commit43310164e47bc4fb45dcbf9506689bcbbb9dcb53 (patch)
tree02909c06324c344efc9edc85a5e74b5dadc9a45e /pkgs/by-name/sc
parent716f10c176d468ea4d9c4e6c48cbc26ea3bc6bef (diff)
scion: add passthru.tests
Diffstat (limited to 'pkgs/by-name/sc')
-rw-r--r--pkgs/by-name/sc/scion/package.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/by-name/sc/scion/package.nix b/pkgs/by-name/sc/scion/package.nix
index af9b92d1cfd27..67321aaa01ff2 100644
--- a/pkgs/by-name/sc/scion/package.nix
+++ b/pkgs/by-name/sc/scion/package.nix
@@ -2,6 +2,7 @@
 , buildGoModule
 , fetchFromGitHub
 , fetchpatch2
+, nixosTests
 }:
 let
   version = "0.10.0";
@@ -61,6 +62,10 @@ buildGoModule {
     })
   ];
 
+  passthru.tests = {
+    inherit (nixosTests) scion-freestanding-deployment;
+  };
+
   meta = with lib; {
     description = "A future Internet architecture utilizing path-aware networking";
     homepage = "https://scion-architecture.net/";