blob: b7c1152d6a5637e082a8461e55ebc6e0cb1ac81b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
darwin,
openssl,
pkg-config,
}:
rustPlatform.buildRustPackage rec {
pname = "live-server";
version = "0.7.0";
src = fetchFromGitHub {
owner = "lomirus";
repo = "live-server";
rev = "v${version}";
hash = "sha256-BSAsD9nRlHaTDbBpLBxN9OOQ9SekRwQeYUWV1CZO4oY=";
};
cargoHash = "sha256-RwueYpa/CMriSOWwGZhkps6jHmqOdRuz+ECRq/ThPs0=";
nativeBuildInputs = [ pkg-config ];
buildInputs =
[ openssl ]
++ lib.optionals stdenv.isDarwin (
with darwin.apple_sdk.frameworks;
[
CoreServices
SystemConfiguration
]
);
meta = with lib; {
description = "Local network server with live reload feature for static pages";
downloadPage = "https://github.com/lomirus/live-server/releases";
homepage = "https://github.com/lomirus/live-server";
license = licenses.mit;
mainProgram = "live-server";
maintainers = [ maintainers.philiptaron ];
platforms = platforms.unix;
};
}
|