add devshell as a package

This commit is contained in:
Charlotte 🦝 Delenk 2022-07-02 17:16:45 +01:00
parent 0e71c1cdb7
commit a8cbe024dd
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -19,7 +19,7 @@
};
};
outputs = { self, nixpkgs, flake-utils, rust-overlay, cargo2nix, ... } @ inputs: flake-utils.lib.eachSystem [ "aarch64-linux" "x86_64-linux" ] (system:
outputs = { self, nixpkgs, flake-utils, rust-overlay, cargo2nix, ... } @ inputs: flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
let
overlays = [
cargo2nix.overlays.default
@ -90,6 +90,7 @@
echo "file binary-dist $out/rkbfirm.uf2.zst" > $out/nix-support/hydra-build-products
echo "$pname-$version" > $out/nix-support/hydra-release-name
'';
devShell = devShells.default;
};
default = rkbfirm;
};