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