moxlib/flake.nix
Alexander "PapaTutuWawa e833e9d9c8
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci: Update pubspec
2023-08-18 18:30:34 +02:00

22 lines
489 B
Nix

{
description = "moxlib";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
dart # Dart
gitlint jq # Code hygiene
ripgrep # General utilities
];
};
});
}