haskell: Add an atto-lisp package.

This commit is contained in:
Petr Rockai
2013-08-16 16:58:15 +02:00
parent 853eaaa69c
commit 031c229cc0
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ cabal, attoparsec, blazeBuilder, blazeTextual, deepseq, text }:
cabal.mkDerivation (self: {
pname = "atto-lisp";
version = "0.2.1.1";
sha256 = "089chx4g880fbs7gh1mcvfx2xgbqdi1dxdjax6vbw8xiqgw4pzac";
jailbreak = true;
buildDepends = [
attoparsec blazeBuilder blazeTextual deepseq text
];
meta = {
homepage = "http://github.com/nominolo/atto-lisp";
description = "Efficient parsing and serialisation of S-Expressions";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})