21 lines
490 B
Nix
21 lines
490 B
Nix
|
{
|
||
|
description = "development environment for surplus on wheels";
|
||
|
|
||
|
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};
|
||
|
in
|
||
|
with pkgs; {
|
||
|
devShells.default = mkShellNoCC {
|
||
|
buildInputs = [ shfmt shellcheck ];
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|