tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
scion: use finalAttrs
Sizhe Zhao
7 months ago
c9ec396d
912a5e62
+4
-8
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sc
scion
package.nix
+4
-8
pkgs/by-name/sc/scion/package.nix
···
4
fetchFromGitHub,
5
nixosTests,
6
}:
7
-
let
8
-
version = "0.12.0";
9
-
in
10
-
11
-
buildGoModule {
12
pname = "scion";
13
14
-
inherit version;
15
16
src = fetchFromGitHub {
17
owner = "scionproto";
18
repo = "scion";
19
-
rev = "v${version}";
20
hash = "sha256-J51GIQQhS623wFUU5dI/TwT2rkDH69518lpdCLZ/iM0=";
21
};
22
···
57
matthewcroughan
58
];
59
};
60
-
}
···
4
fetchFromGitHub,
5
nixosTests,
6
}:
7
+
buildGoModule (finalAttrs: {
0
0
0
0
8
pname = "scion";
9
10
+
version = "0.12.0";
11
12
src = fetchFromGitHub {
13
owner = "scionproto";
14
repo = "scion";
15
+
rev = "v${finalAttrs.version}";
16
hash = "sha256-J51GIQQhS623wFUU5dI/TwT2rkDH69518lpdCLZ/iM0=";
17
};
18
···
53
matthewcroughan
54
];
55
};
56
+
})