haskell: add csv-conduit, packdeps

csv-conduit is a CSV library using conduit (streams)

packdeps is an executable to compare Haskell dependencies to latest
available versions
This commit is contained in:
Daniel Bergey
2014-12-19 19:35:34 +00:00
parent fe5ec0f58d
commit 856fa922c4
3 changed files with 54 additions and 0 deletions
@@ -0,0 +1,19 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, Cabal, filepath, split, tar, text, time }:
cabal.mkDerivation (self: {
pname = "packdeps";
version = "0.4.0.3";
sha256 = "08an9nwg448d3w4yds67l02mgikmjmn52pvva3i386fv4hfkabhp";
isLibrary = true;
isExecutable = true;
buildDepends = [ Cabal filepath split tar text time ];
meta = {
homepage = "http://packdeps.haskellers.com/";
description = "Check your cabal packages for lagging dependencies";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ bergey ];
};
})