Compare commits
No commits in common. "61aa5ee1fbbb143ba8879dfc764bfb61a1f88274" and "669796af57e72622c9914199003eb0ff3d9d69e0" have entirely different histories.
61aa5ee1fb
...
669796af57
@ -1,27 +0,0 @@
|
|||||||
{
|
|
||||||
|
|
||||||
buildGoModule,
|
|
||||||
fetchFromGitHub,
|
|
||||||
|
|
||||||
}: buildGoModule rec {
|
|
||||||
|
|
||||||
pname = "nebula";
|
|
||||||
|
|
||||||
# If this changes, remember to change:
|
|
||||||
# - the AppDir/etc/daemon.yml vpn.firewall docs
|
|
||||||
# - the version imported in go-workspace
|
|
||||||
version = "1.6.1";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "slackhq";
|
|
||||||
repo = pname;
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "sha256-IsLSlQsrfw3obkz4jHL23BRQY2fviGbPEvs5j0zkdX0=";
|
|
||||||
};
|
|
||||||
|
|
||||||
vendorSha256 = "sha256-GvMiOEC3Y/pGG++Z+XCgLVADKymUR9shDxjx3xIz8u0=";
|
|
||||||
|
|
||||||
subPackages = [ "cmd/nebula" "cmd/nebula-cert" ];
|
|
||||||
|
|
||||||
ldflags = [ "-X main.Build=${version}" ];
|
|
||||||
}
|
|
79
nix/pkgs.nix
79
nix/pkgs.nix
@ -2,39 +2,76 @@ rec {
|
|||||||
|
|
||||||
overlays = [
|
overlays = [
|
||||||
|
|
||||||
# Make both buildGoModules use static compilation by default.
|
(final: prev: {
|
||||||
(final: prev:
|
|
||||||
|
|
||||||
let
|
# rebase is a helper which takes all files/dirs under oldroot, and
|
||||||
|
# creates a new derivation with those files/dirs copied under newroot
|
||||||
|
# (where newroot is a relative path to the root of the derivation).
|
||||||
|
rebase = name: oldroot: newroot: prev.stdenv.mkDerivation {
|
||||||
|
name = name;
|
||||||
|
inherit oldroot newroot;
|
||||||
|
builder = builtins.toFile "builder.sh" ''
|
||||||
|
source $stdenv/setup
|
||||||
|
mkdir -p "$out"/"$newroot"
|
||||||
|
cp -rL "$oldroot"/* "$out"/"$newroot"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
buildArgs = {
|
# make buildGoModule default to static compilation
|
||||||
doCheck = false;
|
buildGoModule = args: prev.buildGoModule ({
|
||||||
CGO_ENABLED=0;
|
doCheck = false;
|
||||||
tags = [ "netgo" "timetzdata" ];
|
CGO_ENABLED=0;
|
||||||
ldflags = [ "-w" "-extldflags=-static" ];
|
tags = [ "netgo" "timetzdata" ];
|
||||||
|
ldflags = [ "-w" "-extldflags=-static" ];
|
||||||
|
} // args);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
(final: prev: {
|
||||||
|
|
||||||
|
yq-go = prev.buildGoModule rec {
|
||||||
|
|
||||||
|
pname = "yq-go";
|
||||||
|
version = "4.21.1";
|
||||||
|
|
||||||
|
src = prev.fetchFromGitHub {
|
||||||
|
owner = "mikefarah";
|
||||||
|
repo = "yq";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-283xe7FVHYSsRl4cZD7WDzIW1gqNAFsNrWYJkthZheU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
in {
|
vendorSha256 = "sha256-F11FnDYJ59aKrdRXDPpKlhX52yQXdaN1sblSkVI2j9w=";
|
||||||
|
};
|
||||||
|
|
||||||
buildGoModule = args: prev.buildGoModule (buildArgs // args);
|
nebula = prev.buildGoModule rec {
|
||||||
buildGo118Module = args: prev.buildGo118Module (buildArgs // args);
|
pname = "nebula";
|
||||||
|
|
||||||
}
|
# If this changes, remember to change:
|
||||||
)
|
# - the AppDir/etc/daemon.yml vpn.firewall docs
|
||||||
|
# - the version imported in go-workspace
|
||||||
|
version = "1.4.0";
|
||||||
|
|
||||||
(final: prev: { rebase = prev.callPackage ./rebase.nix {}; })
|
src = prev.fetchFromGitHub {
|
||||||
(final: prev: { yq-go = prev.callPackage ./yq-go.nix {}; })
|
owner = "slackhq";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "lu2/rSB9cFD7VUiK+niuqCX9CI2x+k4Pi+U5yksETSU=";
|
||||||
|
};
|
||||||
|
|
||||||
(final: prev: { nebula = prev.callPackage ./nebula.nix {
|
vendorSha256 = "p1inJ9+NAb2d81cn+y+ofhxFz9ObUiLgj+9cACa6Jqg=";
|
||||||
buildGoModule = prev.buildGo118Module;
|
|
||||||
}; })
|
subPackages = [ "cmd/nebula" "cmd/nebula-cert" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
stableSrc = fetchTarball {
|
stableSrc = fetchTarball {
|
||||||
name = "nixpkgs-22-05";
|
name = "nixpkgs-21-05";
|
||||||
url = "https://github.com/NixOS/nixpkgs/archive/2aec372cdcd4d73b94863611fea70e0884270fdc.tar.gz";
|
url = "https://github.com/NixOS/nixpkgs/archive/7e9b0dff974c89e070da1ad85713ff3c20b0ca97.tar.gz";
|
||||||
sha256 = "1pbfhlh4v8l70p44gspsci3i6w0wk70vaisiawg3jhka2nxb8367";
|
sha256 = "1ckzhh24mgz6jd1xhfgx0i9mijk6xjqxwsshnvq789xsavrmsc36";
|
||||||
};
|
};
|
||||||
|
|
||||||
stable = import stableSrc { inherit overlays; };
|
stable = import stableSrc { inherit overlays; };
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
# rebase is a helper which takes all files/dirs under oldroot, and
|
|
||||||
# creates a new derivation with those files/dirs copied under newroot
|
|
||||||
# (where newroot is a relative path to the root of the derivation).
|
|
||||||
|
|
||||||
{
|
|
||||||
|
|
||||||
stdenv,
|
|
||||||
|
|
||||||
}: name: oldroot: newroot: stdenv.mkDerivation {
|
|
||||||
|
|
||||||
inherit name oldroot newroot;
|
|
||||||
|
|
||||||
builder = builtins.toFile "builder.sh" ''
|
|
||||||
source $stdenv/setup
|
|
||||||
mkdir -p "$out"/"$newroot"
|
|
||||||
cp -rL "$oldroot"/* "$out"/"$newroot"
|
|
||||||
'';
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
|
|
||||||
buildGoModule,
|
|
||||||
fetchFromGitHub,
|
|
||||||
|
|
||||||
}: buildGoModule rec {
|
|
||||||
|
|
||||||
pname = "yq-go";
|
|
||||||
version = "4.21.1";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "mikefarah";
|
|
||||||
repo = "yq";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "sha256-283xe7FVHYSsRl4cZD7WDzIW1gqNAFsNrWYJkthZheU=";
|
|
||||||
};
|
|
||||||
|
|
||||||
vendorSha256 = "sha256-F11FnDYJ59aKrdRXDPpKlhX52yQXdaN1sblSkVI2j9w=";
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user