summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/project-template/default.nix
blob: fa60370f1f5ee308540bf914da70e3901a4c8ede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ cabal, base64Bytestring, base64Conduit, classyPrelude, conduit
, hspec, mtl, QuickCheck, resourcet, systemFileio, systemFilepath
, text, transformers
}:

cabal.mkDerivation (self: {
  pname = "project-template";
  version = "0.1.3";
  sha256 = "1nsc4i3s9a7d0nysswhylvnr79z0ax9biiwr7b6jn7jzx0f2bdmm";
  buildDepends = [
    base64Bytestring base64Conduit classyPrelude conduit mtl resourcet
    systemFileio systemFilepath text transformers
  ];
  testDepends = [
    base64Bytestring classyPrelude conduit hspec QuickCheck
    transformers
  ];
  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;
  };
})