nixpkgs/pkgs/development/libraries/haskell/ghc-syb-utils/default.nix

19 lines
553 B
Nix
Raw Normal View History

{ cabal, ghcSyb, syb }:
cabal.mkDerivation (self: {
pname = "ghc-syb-utils";
version = "0.2.0.0";
sha256 = "457110f7e1f163ccf78acb898f8ca43b6a5b4595156a08a2f1a3d81f944d74a9";
buildDepends = [ ghcSyb syb ];
meta = {
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
];
};
})