webxdc-go/flake.nix
oxaliq ef6ab83090 init from webxdc/hello
using flake to setup dev environment with webxdc-dev
2024-06-19 16:12:42 -04:00

22 lines
445 B
Nix

{
description = "webxdc go application";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
nodejs = pkgs.nodejs-slim;
in {
devShells = {
x86_64-linux = {
default = pkgs.mkShell {
buildInputs = [ nodejs ];
};
};
};
};
}