nixpkgs/pkgs/development/libraries/haskell/convertible/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
311 B
Nix

{cabal, mtl, time}:
cabal.mkDerivation (self : {
pname = "convertible";
version = "1.0.9.1";
sha256 = "a1f46bf1166356c02e7a241d0bfea7010dc3e5f9f15181cfc2405a95df402914";
propagatedBuildInputs = [mtl time];
meta = {
description = "Typeclasses and instances for converting between types";
};
})