diff options
author | Joris | 2020-10-31 15:24:26 +0100 |
---|---|---|
committer | Joris | 2020-10-31 15:24:26 +0100 |
commit | 1e167679f6827c7119d616633b21fffef269cd75 (patch) | |
tree | 9c846c03913366936a093976a329e7a774002283 /shell.nix | |
parent | c9c0a6e8651da823b41e4186a736f2dbb48919db (diff) |
Use only HTML and CSS
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 186912b..0000000 --- a/shell.nix +++ /dev/null @@ -1,29 +0,0 @@ -with (import (builtins.fetchGit { - name = "nixpkgs-20.03"; - url = "git@github.com:nixos/nixpkgs.git"; - rev = "5272327b81ed355bbed5659b8d303cf2979b6953"; - ref = "refs/tags/20.03"; -}) {}); - -haskell.lib.buildStackProject { - name = "myenv"; - - buildInputs = [ - cabal-install - zlib - stack - nodePackages.nodemon - tmux - tmuxinator - nodejs - (texlive.combine { - inherit (texlive) scheme-medium marvosym enumitem bookman titlesec - hyperref fancyhdr changepage lastpage xcolor xifthen ifmtarg; - } - ) - ]; - - shellHook = '' - export PATH=node_modules/.bin:$PATH; - ''; -} |