her.esy.fun/src/posts/rss-gen/shell.nix
Yann Esposito (Yogsototh) 058a1b1ae7
add shell.nix in documents
2019-10-04 21:42:55 +02:00

6 lines
218 B
Nix

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