website/shell.nix

21 lines
217 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
2023-04-06 08:53:04 +00:00
let
gems = bundlerEnv {
name = "hugo-website-gems";
gemdir = ./.;
};
in
mkShell {
packages = [
2023-04-06 08:53:04 +00:00
gems
gems.wrappedRuby
git
go
hugo
];
}