deno-fresh-saurpc-lyrics/flake.nix

27 lines
571 B
Nix
Raw Normal View History

2024-02-18 09:57:14 -06:00
{
2024-03-10 16:06:38 -05:00
inputs.nixpkgs.url = "github:NixOS/nixpkgs/master";
2024-02-18 09:57:14 -06:00
outputs = {
self,
nixpkgs,
}: let
inherit (self) outputs;
supportedSystems = ["x86_64-linux"];
forEachSupportedSystem = nixpkgs.lib.genAttrs supportedSystems;
in {
devShells = forEachSupportedSystem (system: let
pkgs = import nixpkgs {inherit system;};
in {
deno-dev = pkgs.mkShell {
buildInputs = with pkgs; [
sqlite
deno
curl
xh
];
};
default = outputs.devShells.${system}.deno-dev;
});
};
}