33 lines
821 B
Nix
33 lines
821 B
Nix
{
|
|
description = ''
|
|
CLI for initializing new projects deterministically with flakes.
|
|
'';
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, ... }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
codelldb = pkgs.writeShellScriptBin "codelldb" ''
|
|
#!/usr/bin/env bash
|
|
exec ${pkgs.vscode-extensions.vadimcn.vscode-lldb}/share/vscode/extensions/vadimcn.vscode-lldb/adapter/codelldb "$@"
|
|
'';
|
|
in
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
bear
|
|
clang
|
|
clang-tools
|
|
codelldb
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|