2013-09-08 21:05:40 +01:00
|
|
|
{ cabal, base64Bytestring, base64Conduit, basicPrelude, 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-09-08 21:05:40 +01:00
|
|
|
version = "0.1.3.2";
|
|
|
|
sha256 = "076xq5hwi7bfn3cmx8zd19vnj6lj2p7qm2waam94qqw2m466xq50";
|
2012-11-08 13:51:27 +00:00
|
|
|
buildDepends = [
|
2013-09-08 21:05:40 +01:00
|
|
|
base64Bytestring base64Conduit basicPrelude conduit mtl resourcet
|
2013-02-14 11:42:08 +00:00
|
|
|
systemFileio systemFilepath text transformers
|
2012-11-08 13:51:27 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-09-08 21:05:40 +01:00
|
|
|
base64Bytestring basicPrelude conduit hspec QuickCheck
|
|
|
|
systemFilepath text transformers
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
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;
|
|
|
|
};
|
|
|
|
})
|