nixpkgs/pkgs/development/libraries/haskell/hslogger-template/default.nix
Andres Löh b18dd91057 Removing trailing whitespace.
svn path=/nixpkgs/trunk/; revision=26570
2011-03-28 15:04:00 +00:00

13 lines
323 B
Nix

{cabal, hslogger, mtl}:
cabal.mkDerivation (self : {
pname = "hslogger-template";
version = "1.0.0";
sha256 = "0lnscbilzr5avi2h831kv2xhahh7pi5g054bw0sy57a1ccm2pvs1";
propagatedBuildInputs = [ hslogger mtl ];
meta = {
description = "Library for generating hslogger functions using Template Haskell";
};
})