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;
};
})

View File

@ -580,6 +580,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
attempt = callPackage ../development/libraries/haskell/attempt {};
attoLisp = callPackage ../development/libraries/haskell/atto-lisp {};
attoparsec_0_10_4_0 = callPackage ../development/libraries/haskell/attoparsec/0.10.4.0.nix {};
attoparsec_0_11_1_0 = callPackage ../development/libraries/haskell/attoparsec/0.11.1.0.nix {};
attoparsec = self.attoparsec_0_10_4_0;