her.esy.fun/src/posts/0005-rss-gen/shell.nix
2020-05-03 13:47:38 +02:00

6 lines
213 B
Nix

# { pkgs ? import <nixpkgs> {} }:
{ pkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/19.09.tar.gz) {} }:
pkgs.mkShell {
buildInputs = [ pkgs.coreutils pkgs.html-xml-utils pkgs.zsh ];
}