Merge pull request #36350 from volth/nix-serve
nix-serve: nix 2.0 fixes
This commit is contained in:
commit
5fe1be88a5
@ -55,6 +55,8 @@ in
|
|||||||
environment.NIX_SECRET_KEY_FILE = cfg.secretKeyFile;
|
environment.NIX_SECRET_KEY_FILE = cfg.secretKeyFile;
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
|
Restart = "always";
|
||||||
|
RestartSec = "5s";
|
||||||
ExecStart = "${pkgs.nix-serve}/bin/nix-serve " +
|
ExecStart = "${pkgs.nix-serve}/bin/nix-serve " +
|
||||||
"--listen ${cfg.bindAddress}:${toString cfg.port} ${cfg.extraParams}";
|
"--listen ${cfg.bindAddress}:${toString cfg.port} ${cfg.extraParams}";
|
||||||
User = "nix-serve";
|
User = "nix-serve";
|
||||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||||||
inherit rev sha256;
|
inherit rev sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ bzip2 perl nix ]
|
buildInputs = [ bzip2 perl nix nix.perl-bindings ]
|
||||||
++ (with perlPackages; [ DBI DBDSQLite Plack Starman ]);
|
++ (with perlPackages; [ DBI DBDSQLite Plack Starman ]);
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user