about summary refs log tree commit diff
path: root/shell.nix
blob: 7a853f40a6c7bee5e795bb763f0dac0c1c52e4f4 (plain)
1
2
3
4
5
6
7
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
  buildInputs = with pkgs; [
    lowdown
    httplz
  ];
}