Merge pull request #299024 from MatthewCroughan/mc/fix-scion

scion: buildGo121Modules -> buildGoModule
This commit is contained in:
lassulus 2024-03-26 13:00:20 +07:00 committed by GitHub
commit 0bb64539f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{ lib
, buildGo121Module
, buildGoModule
, fetchFromGitHub
, fetchpatch2
}:
let
version = "0.10.0";
@ -18,7 +19,7 @@ let
'';
in
buildGo121Module {
buildGoModule {
pname = "scion";
inherit version;
@ -43,6 +44,13 @@ buildGo121Module {
doCheck = true;
patches = [
(fetchpatch2 {
url = "https://github.com/scionproto/scion/commit/cb7fa6d6aab55c9eb90556c2b996b87539f8aa02.patch";
hash = "sha256-mMGJMPB6T7KeDXjEXffdrhzyKwaFmhuisK6PjHOJIdU=";
})
];
meta = with lib; {
description = "A future Internet architecture utilizing path-aware networking";
homepage = "https://scion-architecture.net/";