servant/servant-lucid/default.nix

11 lines
321 B
Nix
Raw Normal View History

2015-07-29 16:06:47 +02:00
{ mkDerivation, base, http-media, lucid, servant, stdenv }:
mkDerivation {
pname = "servant-lucid";
version = "0.5";
src = ./.;
buildDepends = [ base http-media lucid servant ];
homepage = "http://haskell-servant.github.io/";
description = "Servant support for lucid";
license = stdenv.lib.licenses.bsd3;
}