kelunit/shell.nix

10 lines
133 B
Nix
Raw Permalink Normal View History

2023-02-02 17:18:59 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
name = "kelunit";
nativeBuildInputs = [
pkgs.scons
pkgs.clang
];
}