mirror of
https://github.com/status-im/test-site.git
synced 2026-08-27 13:11:08 +00:00
12 lines
352 B
Nix
12 lines
352 B
Nix
{
|
|
description = "Test static site for caddy-git pipeline";
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
|
|
outputs = { self, nixpkgs }:
|
|
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
in {
|
|
devShells.x86_64-linux.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [ nodejs_20 yarn git ghp-import ];
|
|
};
|
|
};
|
|
}
|