her.esy.fun/shell.nix

12 lines
375 B
Nix
Raw Permalink Normal View History

2019-09-24 15:55:59 +00:00
# { pkgs ? import <nixpkgs> {} }:
2019-12-16 12:07:02 +00:00
{ pkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/19.09.tar.gz) {} }:
2019-09-24 15:55:59 +00:00
pkgs.mkShell {
2019-11-11 00:05:52 +00:00
buildInputs = [ pkgs.coreutils
pkgs.html-xml-utils
pkgs.zsh
pkgs.perl
pkgs.perlPackages.URI
pkgs.minify
];
2019-09-24 15:55:59 +00:00
}