flake: add devshell
This commit is contained in:
parent
392a041d2e
commit
e9c473e671
1 changed files with 11 additions and 0 deletions
11
flake.nix
11
flake.nix
|
@ -16,6 +16,17 @@
|
||||||
);
|
);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
devShells = forAllSystems (pkgs: {
|
||||||
|
default = pkgs.mkShell {
|
||||||
|
packages = with pkgs; [
|
||||||
|
stdenv
|
||||||
|
clang-tools
|
||||||
|
];
|
||||||
|
shellHook = ''
|
||||||
|
export PS1="(callisto) $ "
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
});
|
||||||
packages = forAllSystems (pkgs: {
|
packages = forAllSystems (pkgs: {
|
||||||
default = pkgs.stdenv.mkDerivation {
|
default = pkgs.stdenv.mkDerivation {
|
||||||
name = "callisto";
|
name = "callisto";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue