2012-12-05 14:03:01 +01:00
|
|
|
{ cabal, base64Bytestring, base64Conduit, classyPreludeConduit
|
|
|
|
, conduit, mtl, resourcet, systemFileio, systemFilepath, text
|
|
|
|
, transformers
|
2012-11-08 14:51:27 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "project-template";
|
2013-02-09 18:24:50 +01:00
|
|
|
version = "0.1.2";
|
|
|
|
sha256 = "16rgarx78jwiimh3q8flxvmfraxmc1dxl8r04q4j1p9ap3mnvg61";
|
2012-11-08 14:51:27 +01:00
|
|
|
buildDepends = [
|
2012-12-05 14:03:01 +01:00
|
|
|
base64Bytestring base64Conduit classyPreludeConduit conduit mtl
|
|
|
|
resourcet systemFileio systemFilepath text transformers
|
2012-11-08 14:51:27 +01: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;
|
|
|
|
};
|
|
|
|
})
|