1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-22 06:05:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/text-format/default.nix

15 lines
456 B
Nix
Raw Normal View History

2013-10-22 00:08:05 +01:00
{ cabal, doubleConversion, text, time, transformers }:
cabal.mkDerivation (self: {
pname = "text-format";
version = "0.3.1.1";
sha256 = "02zfgzfjvkaxbma1h2gr95h10c8q9gyaadag41q579j68iv15qbd";
2013-10-22 00:08:05 +01:00
buildDepends = [ doubleConversion text time transformers ];
meta = {
homepage = "https://github.com/bos/text-format";
description = "Text formatting";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})