fix: got everything to compile

This commit is contained in:
Andrew Rioux
2025-02-15 19:01:37 -05:00
parent 4e0944e4c1
commit 118d56fc36
13 changed files with 123 additions and 70 deletions
+15
View File
@@ -47,6 +47,21 @@ in {
'';
};
win-openssl = with pkgs.pkgsCross.mingwW64;
pkgs.stdenv.mkDerivation {
name = "win-openssl";
buildInputs = with pkgs; [ gnutar ];
unpackPhase = ''
mkdir -p $out
cp -r ${openssl.out}/* $out
chmod -R +rwx $out
cp -r ${openssl.dev}/* $out
'';
};
libnl = pkgs.stdenv.mkDerivation {
name = "libnl-static";