mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
haskell: Add an atto-lisp package.
This commit is contained in:
parent
853eaaa69c
commit
031c229cc0
17
pkgs/development/libraries/haskell/atto-lisp/default.nix
Normal file
17
pkgs/development/libraries/haskell/atto-lisp/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user