Last active
November 22, 2021 07:56
-
-
Save enricozb/9dbe928e0d02e45c3aed45bbe98a3eb7 to your computer and use it in GitHub Desktop.
Packaging Theos with Nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# see: https://github.com/theos/theos/wiki/Installation-Linux | |
# TODO: figure out how to | |
# 1. be able to reference this derivation through an env var like `$THEOS` | |
{ pkgs, ... }: | |
let | |
rev = "e707fa9c4777f399ff5d97ff1f49431bdce63654"; | |
llvm-swift = builtins.fetchurl { | |
url = | |
"https://github.com/CRKatri/llvm-project/releases/download/swift-5.3.2-RELEASE/swift-5.3.2-RELEASE-ubuntu18.04.tar.zst"; | |
sha256 = "1mhr91n6p0sahqdmlpz4fr539g9rwrwq0k9mx9ikg6gcl4ddjzfk"; | |
}; | |
theos-src = pkgs.fetchgit { | |
url = "https://github.com/theos/theos"; | |
rev = rev; | |
sha256 = "0g3nh64i5ahqa5zmqlz1b1mhv6qa9fiq04wxw73qdnq86f3ipvzz"; | |
leaveDotGit = true; | |
fetchSubmodules = true; | |
}; | |
theos-sdks = pkgs.fetchFromGitHub { | |
owner = "theos"; | |
repo = "sdks"; | |
rev = "9099848a90e7f075538312ab503d4aadedd24ef3"; | |
sha256 = "0cb92kly6dyvivbhir9qhakmh0zida6gp7bc09379nj8r2i5x65b"; | |
}; | |
rpath = pkgs.lib.makeLibraryPath [ | |
pkgs.gcc-unwrapped.lib | |
pkgs.glibc | |
pkgs.libedit | |
pkgs.ncurses5 | |
pkgs.swift | |
pkgs.util-linux | |
pkgs.zlib | |
]; | |
theos = pkgs.stdenv.mkDerivation { | |
name = "theos"; | |
version = rev; | |
srcs = [ llvm-swift theos-src theos-sdks ]; | |
nativeBuildInputs = [ pkgs.autoPatchelfHook ]; | |
buildInputs = [ pkgs.patchelf pkgs.zstd ]; | |
phases = [ "installPhase" ]; | |
installPhase = '' | |
mkdir -p $out/share | |
THEOS=$out/share/theos | |
# install theos | |
cp -r --no-preserve=mode,ownership ${theos-src} $THEOS | |
# install llvm-swift | |
tar -xf ${llvm-swift} -C $TMPDIR | |
mkdir -p $THEOS/toolchain/linux/iphone $THEOS/toolchain/swift | |
mv $TMPDIR/swift-5.3.2-RELEASE-ubuntu18.04/* $THEOS/toolchain/linux/iphone/ | |
ln -s $THEOS/toolchain/linux/iphone $THEOS/toolchain/swift | |
# install 14.4 sdk | |
cp -r --no-preserve=mode,ownership ${theos-sdks}/iPhoneOS14.4.sdk $THEOS/sdks | |
# mutate perl scripts so they use `/usr/bin/env perl` as a shebang | |
find $THEOS -type f -name '*.pl' -exec sed -i 's|#!/usr/bin/perl|#!/usr/bin/env perl|g' {} \; | |
chmod +x $(find $THEOS -type f -name '*.pl') | |
# mutate bin/bash scripts so they use `/usr/bin/env bash` as a shebang | |
find $THEOS/bin -type f -exec sed -i 's|#!/bin/bash|#!/usr/bin/env bash|g' {} \; | |
chmod +x $THEOS/bin/* | |
# install nic.pl | |
mkdir -p $out/bin | |
cat <<EOF >$out/bin/theos-nic | |
#!/usr/bin/env bash | |
perl $THEOS/bin/nic.pl | |
EOF | |
chmod +x $out/bin/theos-nic | |
# patchELF all executables | |
find $THEOS -type f -executable -exec patchelf --replace-needed libedit.so.2 libedit.so.0 {} \; | |
find $THEOS -type f -executable -exec patchelf --set-rpath ${rpath} --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) {} \; | |
# manual fix for an annoying bug | |
cat <<EOF >$THEOS/toolchain/linux/iphone/bin/ld | |
#!/bin/sh | |
LD_LIBRARY_PATH="\$(dirname "\$0")"/../lib:${rpath} "\$(dirname "\$0")"/ld64 "\$@" | |
EOF | |
''; | |
}; | |
# modeled after: https://archlinux.org/groups/x86_64/base-devel/ | |
base-devel = with pkgs; [ | |
autoconf | |
automake | |
binutils | |
bison | |
fakeroot | |
file | |
findutils | |
flex | |
gawk | |
gcc | |
gettext | |
gnumake | |
groff | |
gzip | |
libtool | |
m4 | |
patch | |
pkgconf | |
texinfo | |
which | |
zstd | |
]; | |
in { | |
environment.systemPackages = with pkgs; | |
base-devel ++ [ git perl unzip ncurses5 theos ]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment