nixpkgs/pkgs/development/libraries/haskell/atto-lisp/default.nix

23 lines
665 B
Nix
Raw Normal View History

{ cabal, attoparsec, blazeBuilder, blazeTextual, deepseq, HUnit
, testFramework, testFrameworkHunit, text
}:
2013-08-16 14:58:15 +00:00
cabal.mkDerivation (self: {
pname = "atto-lisp";
version = "0.2.1.2";
sha256 = "0xl5b0gblab3v2sfaxvx3z96660r9xp1m2n3ri6aph3kldbpkfcg";
2013-08-16 14:58:15 +00:00
buildDepends = [
attoparsec blazeBuilder blazeTextual deepseq text
];
testDepends = [
attoparsec HUnit testFramework testFrameworkHunit text
];
jailbreak = true;
2013-08-16 14:58:15 +00:00
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;
};
})