kelunit/shell.nix

10 lines
133 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
name = "kelunit";
nativeBuildInputs = [
pkgs.scons
pkgs.clang
];
}