forstio/default.nix

16 lines
176 B
Nix

with import <nixpkgs> {};
stdenvNoCC.mkDerivation {
name = "forstio";
src = ./.;
nativeBuildInputs = [
scons
clang_14
];
buildInputs = [
gnutls
];
}