isle/default.nix

139 lines
3.1 KiB
Nix
Raw Normal View History

2023-02-15 13:58:47 +00:00
{
2023-02-15 13:58:47 +00:00
buildSystem ? builtins.currentSystem,
2023-03-25 14:58:20 +00:00
hostSystem ? buildSystem,
pkgsNix ? (import ./nix/pkgs.nix),
2023-02-15 13:58:47 +00:00
revision ? "",
2023-03-25 14:58:20 +00:00
releaseName ? "dev",
2023-02-15 13:58:47 +00:00
bootstrap ? null,
2023-02-15 13:58:47 +00:00
}: let
pkgs = pkgsNix.default {
inherit buildSystem hostSystem;
};
2023-03-25 14:58:20 +00:00
pkgsNative = pkgsNix.default {
inherit buildSystem;
hostSystem = buildSystem;
};
2023-02-15 13:58:47 +00:00
garageNix = (import ./nix/garage.nix);
2023-02-15 13:58:47 +00:00
in rec {
2022-10-20 20:30:30 +00:00
version = pkgs.stdenv.mkDerivation {
name = "cryptic-net-version";
2023-03-25 14:58:20 +00:00
inherit buildSystem hostSystem revision releaseName;
repoSrc = ./.;
2023-03-25 14:58:20 +00:00
nativeBuildInputs = [ pkgsNative.git ];
2022-10-20 20:30:30 +00:00
goVersion = pkgs.go.version;
2023-02-15 13:58:47 +00:00
garageVersion = garageNix.version;
nixpkgsVersion = pkgsNix.version;
builder = builtins.toFile "builder.sh" ''
source $stdenv/setup
versionFile=version
2023-02-15 13:58:47 +00:00
if [ "$revision" = "" ]; then
cp -r "$repoSrc" repoSrcCp
2023-02-15 13:58:47 +00:00
revision="$(cd repoSrcCp && git rev-parse HEAD)"
fi
2022-10-20 20:30:30 +00:00
2023-03-25 14:58:20 +00:00
echo "Release: $releaseName" >> "$versionFile"
echo "Platform: $hostSystem" >> "$versionFile"
echo "Git Revision: $revision" >> "$versionFile"
echo "Go Version: $goVersion" >> "$versionFile"
echo "Garage Version: $garageVersion" >> "$versionFile"
echo "NixPkgs Version: $nixpkgsVersion" >> "$versionFile"
echo "Build Platform: $buildSystem" >> "$versionFile"
mkdir -p "$out"/share
cp "$versionFile" "$out"/share
'';
};
entrypoint = pkgs.callPackage ./entrypoint {};
dnsmasq = (pkgs.callPackage ./nix/dnsmasq.nix {
stdenv = pkgs.pkgsStatic.stdenv;
});
nebula = pkgs.callPackage ./nix/nebula.nix {};
garage = let
hostPlatform = pkgs.stdenv.hostPlatform.parsed;
2023-02-15 13:58:47 +00:00
in pkgs.callPackage garageNix.package {
inherit buildSystem;
hostSystem = "${hostPlatform.cpu.name}-unknown-${hostPlatform.kernel.name}-musl";
pkgsSrc = pkgsNix.src;
};
rootedBootstrap = pkgs.stdenv.mkDerivation {
name = "cryptic-net-rooted-bootstrap";
src = bootstrap;
builder = builtins.toFile "builder.sh" ''
source $stdenv/setup
mkdir -p "$out"/share
cp "$src" "$out"/share/bootstrap.yml
'';
};
appDir = pkgs.buildEnv {
name = "cryptic-net-AppDir";
paths = [
./AppDir
version
dnsmasq
nebula
garage
pkgs.minio-client
entrypoint
] ++ (if bootstrap != null then [ rootedBootstrap ] else []);
};
appimagetool = pkgs.callPackage ./nix/appimagetool.nix {};
appImage = pkgs.stdenv.mkDerivation {
name = "cryptic-net-AppImage";
src = appDir;
nativeBuildInputs = [
appimagetool
];
2023-02-15 13:58:47 +00:00
ARCH = pkgs.stdenv.hostPlatform.parsed.cpu.name;
builder = builtins.toFile "build.sh" ''
source $stdenv/setup
cp -rL "$src" cryptic-net.AppDir
chmod +w cryptic-net.AppDir -R
export VERSION=debug
# https://github.com/probonopd/go-appimage/issues/155
unset SOURCE_DATE_EPOCH
appimagetool ./cryptic-net.AppDir
mkdir -p "$out"/bin
chmod +w "$out" -R
mv Cryptic_Net-* "$out"/bin/cryptic-net
'';
};
}