nixpkgs/pkgs/servers/microserver/default.nix

25 lines
723 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin }:
2020-09-11 09:39:09 +00:00
rustPlatform.buildRustPackage rec {
pname = "microserver";
2020-11-26 11:20:03 +00:00
version = "0.2.0";
2020-09-11 09:39:09 +00:00
src = fetchFromGitHub {
owner = "robertohuertasm";
repo = "microserver";
rev = "v${version}";
2020-11-26 11:20:03 +00:00
sha256 = "1bbbdajh74wh2fbidasim2mzmzqjrgi02v8b0g7vbhpdnlim6ixz";
2020-09-11 09:39:09 +00:00
};
2020-11-26 11:20:03 +00:00
cargoSha256 = "0cyxa200iz7knkma4zi3mzky3g0kibbxd5303psk2rl2rppir0f7";
2020-09-11 09:39:09 +00: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
meta = with lib; {
2020-09-11 09:39:09 +00:00
homepage = "https://github.com/robertohuertasm/microserver";
description = "Simple ad-hoc server with SPA support";
maintainers = with maintainers; [ flosse ];
license = licenses.mit;
};
}