her.esy.fun/shell.nix

16 lines
517 B
Nix
Raw 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) {} }:
2020-05-08 22:20:44 +00:00
let my_aspell = pkgs.aspellWithDicts(p: with p; [en fr]);
in
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
2020-04-18 08:48:44 +00:00
pkgs.haskellPackages.sws
2020-05-01 08:32:32 +00:00
pkgs.cacert
2019-11-11 00:05:52 +00:00
];
2019-09-24 15:55:59 +00:00
}