Update nix-serve.ng.nix

This commit is contained in:
Gabriella Gonzalez 2022-06-15 12:21:16 -07:00
parent 91eab58f28
commit b6ee2864ac

View File

@ -1,5 +1,5 @@
{ mkDerivation, base, bsd-sysctl, bytestring, http-types, lib
, managed, megaparsec, network, nixstore, nixutil
, managed, megaparsec, mtl, network, nixstore, nixutil
, optparse-applicative, vector, wai, warp, warp-tls
}:
mkDerivation {
@ -9,10 +9,10 @@ mkDerivation {
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base bsd-sysctl bytestring http-types managed megaparsec network
optparse-applicative vector wai warp warp-tls
base bsd-sysctl bytestring http-types managed megaparsec mtl
network optparse-applicative vector wai warp warp-tls
];
executableSystemDepends = [ nixstore nixutil ];
description = "A drop-in replacement for nix-serve that's faster and more stable";
license = lib.licenses.bsd3;
license = lib.licenses.asl20;
}