Flake-enable the project

This commit is contained in:
Gabriella Gonzalez
2022-07-01 14:00:11 -07:00
parent 1881b0385b
commit 670846795d
6 changed files with 150 additions and 33 deletions

View File

@@ -1,7 +1,6 @@
{ mkDerivation, base, base16, base32, bytestring, charset
, http-types, managed, megaparsec, mtl, network, nix
, optparse-applicative, stdenv, vector, wai, wai-extra, warp
, warp-tls
, http-types, lib, managed, megaparsec, mtl, network, nix
, optparse-applicative, vector, wai, wai-extra, warp, warp-tls
}:
mkDerivation {
pname = "nix-serve-ng";
@@ -15,5 +14,5 @@ mkDerivation {
];
executablePkgconfigDepends = [ nix ];
description = "A drop-in replacement for nix-serve that's faster and more stable";
license = stdenv.lib.licenses.asl20;
license = lib.licenses.asl20;
}