about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/structured-haskell-mode/default.nix
blob: a832c7d5942cda5c3cb1caf1ffc262f028726f26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ cabal, emacs, haskellSrcExts }:

cabal.mkDerivation (self: {
  pname = "structured-haskell-mode";
  version = "1.0.2";
  sha256 = "1lwdhlr38y5hdr78nplplr3q0hrjhryw378f1857qh0lvp03gwl2";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [ haskellSrcExts ];
  buildTools = [ emacs ];
  postInstall = ''
    emacs -L elisp --batch -f batch-byte-compile "elisp/"*.el
    install -d $out/share/emacs/site-lisp
    install "elisp/"*.el "elisp/"*.elc  $out/share/emacs/site-lisp
  '';
  meta = {
    homepage = "https://github.com/chrisdone/structured-haskell-mode";
    description = "Structured editing Emacs mode for Haskell";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})