summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/happstack/happstack-util.nix
blob: 8dfac311a9a50f016c9a9c854c301ea6c8308187 (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
{ cabal, extensibleExceptions, filepath, hslogger, mtl, network
, parsec, random, time, unixCompat
}:

cabal.mkDerivation (self: {
  pname = "happstack-util";
  version = "6.0.3";
  sha256 = "0hqssd5wzir6rxn46q8r3hdp3nl7v5m7w322j39120xpg2bhiphh";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    extensibleExceptions filepath hslogger mtl network parsec random
    time unixCompat
  ];
  jailbreak = true;
  meta = {
    homepage = "http://happstack.com";
    description = "Web framework";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})