forked from mirrors/nixpkgs
Added csv Haskell package.
svn path=/nixpkgs/trunk/; revision=20464
This commit is contained in:
parent
7a2ad368f9
commit
2a1293a3c4
12
pkgs/development/libraries/haskell/csv/default.nix
Normal file
12
pkgs/development/libraries/haskell/csv/default.nix
Normal 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";
|
||||
};
|
||||
})
|
||||
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue