2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, ghcSyb, syb }:
|
2010-11-15 21:28:21 +01:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-15 21:28:21 +01:00
|
|
|
pname = "ghc-syb-utils";
|
|
|
|
version = "0.2.0.0";
|
|
|
|
sha256 = "457110f7e1f163ccf78acb898f8ca43b6a5b4595156a08a2f1a3d81f944d74a9";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ ghcSyb syb ];
|
2010-11-15 21:28:21 +01:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://github.com/nominolo/ghc-syb";
|
|
|
|
description = "Scrap Your Boilerplate utilities for the GHC API.";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-11-15 21:28:21 +01:00
|
|
|
};
|
|
|
|
})
|