tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
scion: add updateScript
Sizhe Zhao
7 months ago
44e45dd6
db39dd03
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sc
scion
package.nix
+6
-2
pkgs/by-name/sc/scion/package.nix
···
2
lib,
3
buildGoModule,
4
fetchFromGitHub,
0
5
nixosTests,
6
}:
7
buildGoModule (finalAttrs: {
···
39
40
tags = [ "sqlite_mattn" ];
41
42
-
passthru.tests = {
43
-
inherit (nixosTests) scion-freestanding-deployment;
0
0
0
44
};
45
46
meta = {
···
2
lib,
3
buildGoModule,
4
fetchFromGitHub,
5
+
nix-update-script,
6
nixosTests,
7
}:
8
buildGoModule (finalAttrs: {
···
40
41
tags = [ "sqlite_mattn" ];
42
43
+
passthru = {
44
+
tests = {
45
+
inherit (nixosTests) scion-freestanding-deployment;
46
+
};
47
+
updateScript = nix-update-script { };
48
};
49
50
meta = {