From b6ee2864ac3a4917897747d4a65c13c4e91e1d0b Mon Sep 17 00:00:00 2001 From: Gabriella Gonzalez Date: Wed, 15 Jun 2022 12:21:16 -0700 Subject: [PATCH] Update `nix-serve.ng.nix` --- nix/nix-serve-ng.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/nix-serve-ng.nix b/nix/nix-serve-ng.nix index 2760cf1..e6eaf96 100644 --- a/nix/nix-serve-ng.nix +++ b/nix/nix-serve-ng.nix @@ -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; }