solo5
solo5 copied to clipboard
Support building with nix
I just want to drop this expression here, that allows to build solo5 with nix:
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
nativeBuildInputs = [
bashInteractive
pkg-config
];
hardeningEnable = [ "pie" ];
buildInputs = [
libseccomp
];
}
Also needs https://github.com/Solo5/solo5/pull/496