3
0
Fork 0
forked from mirrors/nixpkgs

Added csv Haskell package.

svn path=/nixpkgs/trunk/; revision=20464
This commit is contained in:
Andres Löh 2010-03-07 22:32:58 +00:00
parent 7a2ad368f9
commit 2a1293a3c4
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{cabal, parsec}:
cabal.mkDerivation (self : {
pname = "csv";
version = "0.1.1";
sha256 = "046e989f4bb76c9b15c33c3ec63f57a689317de8170449c9cf9e152393b7f1a0";
propagatedBuildInputs = [parsec];
meta = {
description = "CSV loader and dumper";
};
})

View file

@ -81,6 +81,10 @@ rec {
json = json_036;
};
csv = import ../development/libraries/haskell/csv {
inherit cabal parsec;
};
dataenc = import ../development/libraries/haskell/dataenc {
inherit cabal;
};