nixpkgs/pkgs/development/libraries/haskell/reflection/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

15 lines
442 B
Nix

{ cabal, tagged }:
cabal.mkDerivation (self: {
pname = "reflection";
version = "1.3.1";
sha256 = "0d81zvyg846jp0xkdkj4220w6hbrnzf46zcxs5qb5frm41rwcsj8";
buildDepends = [ tagged ];
meta = {
homepage = "http://github.com/ekmett/reflection";
description = "Reifies arbitrary terms into types that can be reflected back into terms";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})