2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin }:
|
2020-09-11 10:39:09 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "microserver";
|
2020-11-26 11:20:03 +00:00
|
|
|
version = "0.2.0";
|
2020-09-11 10:39:09 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "robertohuertasm";
|
|
|
|
repo = "microserver";
|
|
|
|
rev = "v${version}";
|
2020-11-26 11:20:03 +00:00
|
|
|
sha256 = "1bbbdajh74wh2fbidasim2mzmzqjrgi02v8b0g7vbhpdnlim6ixz";
|
2020-09-11 10:39:09 +01:00
|
|
|
};
|
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "1wh5riw1fr87wbzbzjnwi5zsc5nflwnp6qcpa8a2js54ncd01n16";
|
2020-09-11 10:39:09 +01:00
|
|
|
|
2021-01-15 07:07:56 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security ]);
|
2020-11-26 18:23:03 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-09-11 10:39:09 +01:00
|
|
|
homepage = "https://github.com/robertohuertasm/microserver";
|
|
|
|
description = "Simple ad-hoc server with SPA support";
|
|
|
|
maintainers = with maintainers; [ flosse ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|