nixpkgs/pkgs/development/libraries/haskell/csv/default.nix

13 lines
251 B
Nix
Raw Normal View History

{cabal, parsec}:
cabal.mkDerivation (self : {
pname = "csv";
version = "0.1.2";
sha256 = "00767ai09wm7f0yzmpqck3cpgxncpr9djnmmz5l17ajz69139x4c";
propagatedBuildInputs = [parsec];
meta = {
description = "CSV loader and dumper";
};
})