From 8d00a456a03aed5dc4a8944519e4d3d44c446ad8 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Wed, 15 Jan 2020 14:29:18 +0000 Subject: Beging work to port f.el to Haskell This is a work-in-progress. I'd like to add a README to this project to explain my intention. The goal, roughly, is to port Elisp's fantastic f.el module to Haskell. I consider Haskell APIs to be useful but somewhat sloppily designed. In the same spirit as Elixir wrapping Erlang APIs, many of the functions I intend to define will simply wrap existing Haskell APIs, but with a hopefully cleaner API that I find more intuitive. --- haskell-file/shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 haskell-file/shell.nix (limited to 'haskell-file/shell.nix') diff --git a/haskell-file/shell.nix b/haskell-file/shell.nix new file mode 100644 index 000000000000..f2621d6eac5a --- /dev/null +++ b/haskell-file/shell.nix @@ -0,0 +1,9 @@ +with import {}; + +stdenv.mkDerivation { + name = "f-hs"; + buildInputs = [ + (pkgs.haskellPackages.ghcWithPackages (pkgs: [ + ])) + ]; +} -- cgit 1.4.1