webxdc-go/flake.nix

23 lines
440 B
Nix
Raw Permalink Normal View History

{
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; };
2024-06-19 22:03:21 +00:00
nodejs = pkgs.nodejs;
in {
devShells = {
x86_64-linux = {
default = pkgs.mkShell {
buildInputs = [ nodejs ];
};
};
};
};
}