1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 00:54:46 +00:00
nixpkgs/pkgs/development/libraries/haskell/convertible/default.nix

13 lines
313 B
Nix
Raw Normal View History

{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";
};
})