about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/elm/packages/indents.nix
blob: 80f3c08d9e332910435cca3022c34d2d3797be3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ mkDerivation, base, concatenative, mtl, parsec, lib, stdenv }:
mkDerivation {
  pname = "indents";
  version = "0.3.3";
  sha256 = "b61f51ac894609cb5571cc3ded12db5de97185a8de236c69ec24c87457109f9a";
  libraryHaskellDepends = [ base concatenative mtl parsec ];
  doCheck = false;
  homepage = "http://patch-tag.com/r/salazar/indents";
  description = "indentation sensitive parser-combinators for parsec";
  license = lib.licenses.bsd3;
}