mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-09 17:42:19 +00:00
21 lines
No EOL
386 B
Nix
21 lines
No EOL
386 B
Nix
{
|
|
description = "runtimeterror build environment";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let
|
|
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
|
in
|
|
{
|
|
devShells.x86_64-linux.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
go
|
|
hugo
|
|
nodePackages.npm
|
|
];
|
|
};
|
|
};
|
|
} |