about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/elm/packages/ghc9_2/elm-format/elm-format-markdown.nix
blob: e57d2127822e76ee3e57f42c937db332be4e8ac9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ mkDerivation, base, containers, fetchgit, lib, mtl, text }:
mkDerivation {
  pname = "elm-format-markdown";
  version = "0.0.0.1";
  src = fetchgit {
    url = "https://github.com/avh4/elm-format";
    sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi";
    rev = "b5cca4c26b473dab06e5d73b98148637e4770d45";
    fetchSubmodules = true;
  };
  postUnpack = "sourceRoot+=/elm-format-markdown; echo source root reset to $sourceRoot";
  libraryHaskellDepends = [ base containers mtl text ];
  description = "Markdown parsing for Elm documentation comments";
  license = lib.licenses.bsd3;
}