nixpkgs/pkgs/servers/microserver/default.nix

25 lines
730 B
Nix
Raw Normal View History

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