19 lines
641 B
Nix
19 lines
641 B
Nix
{ mkDerivation, base, base16, base32, bytestring, charset
|
|
, http-types, lib, managed, megaparsec, mtl, network, nix
|
|
, optparse-applicative, vector, wai, wai-extra, warp, warp-tls
|
|
}:
|
|
mkDerivation {
|
|
pname = "nix-serve-ng";
|
|
version = "1.0.0";
|
|
src = ./..;
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
executableHaskellDepends = [
|
|
base base16 base32 bytestring charset http-types managed megaparsec
|
|
mtl network optparse-applicative vector wai wai-extra warp warp-tls
|
|
];
|
|
executablePkgconfigDepends = [ nix ];
|
|
description = "A drop-in replacement for nix-serve that's faster and more stable";
|
|
license = lib.licenses.asl20;
|
|
}
|