AAXtoMP3/shell.nix
Victor Engmark 321991c470 feat: Enable Nix shell
Also add a script to automate this process by creating a JSON file based
on the current state of the relevant channel
<https://github.com/linz/geostore/pull/2130/files>.
2022-10-16 19:42:25 +13:00

26 lines
417 B
Nix

let
pkgs =
import (
fetchTarball (
builtins.fromJSON (
builtins.readFile ./nixpkgs.json
)
)
) {
};
in
pkgs.mkShell {
packages = [
pkgs.alejandra
pkgs.bashInteractive
pkgs.cacert
pkgs.gitFull
pkgs.gitlint
pkgs.gnumake
pkgs.nix
pkgs.nixos-rebuild
pkgs.nodePackages.prettier
pkgs.pre-commit
];
}