2013-02-14 11:42:08 +00:00
|
|
|
{ cabal, base64Bytestring, base64Conduit, classyPrelude, conduit
|
2013-02-24 21:09:07 +00:00
|
|
|
, hspec, mtl, QuickCheck, resourcet, systemFileio, systemFilepath
|
|
|
|
, text, transformers
|
2012-11-08 13:51:27 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "project-template";
|
2013-02-14 11:42:08 +00:00
|
|
|
version = "0.1.3";
|
|
|
|
sha256 = "1nsc4i3s9a7d0nysswhylvnr79z0ax9biiwr7b6jn7jzx0f2bdmm";
|
2012-11-08 13:51:27 +00:00
|
|
|
buildDepends = [
|
2013-02-14 11:42:08 +00:00
|
|
|
base64Bytestring base64Conduit classyPrelude conduit mtl resourcet
|
|
|
|
systemFileio systemFilepath text transformers
|
2012-11-08 13:51:27 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
base64Bytestring classyPrelude conduit hspec QuickCheck
|
|
|
|
transformers
|
|
|
|
];
|
2012-11-08 13:51:27 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/fpco/haskell-ide";
|
|
|
|
description = "Specify Haskell project templates and generate files";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|