Merge pull request #234 from counterposition/patch-1

Replace deprecated devShell attribute key
This commit is contained in:
Jörg Thalheim 2022-09-22 07:55:46 +02:00 committed by GitHub
commit 9ef07e303c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
devShells.default = pkgs.mkShell {
nativeBuildInputs = [ pkgs.bashInteractive ];
buildInputs = [ ];
};