solo5 icon indicating copy to clipboard operation
solo5 copied to clipboard

Support building with nix

Open Mic92 opened this issue 4 years ago • 0 comments

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

Mic92 avatar May 22 '21 08:05 Mic92