summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/snap/loader-dynamic.nix
blob: abe4d4cc074b8cefbc212eb52e28325fd843863c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, directoryTree, hint, mtl, snapCore, time }:

cabal.mkDerivation (self: {
  pname = "snap-loader-dynamic";
  version = "0.10";
  sha256 = "0wnrsbnf3crfxhhraz4my08m6yhmqj632rv6cdy9ili3wxjkqd57";
  buildDepends = [ directoryTree hint mtl snapCore time ];
  meta = {
    homepage = "http://snapframework.com/";
    description = "Snap: A Haskell Web Framework: dynamic loader";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})