1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/snap/loader-dynamic.nix

16 lines
535 B
Nix

{ 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;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})