Merge pull request #97748 from flosse/microserver

microserver: init at 0.1.8
This commit is contained in:
Stig P 2020-09-18 22:50:06 +00:00 committed by GitHub
commit f6e70564fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "microserver";
version = "0.1.8";
src = fetchFromGitHub {
owner = "robertohuertasm";
repo = "microserver";
rev = "v${version}";
sha256 = "1i9689ra5jnmhkxabrx4zcp5f422w9ql9m4xzldqwmpnckm736v6";
};
cargoSha256 = "1yn3xmmhpixiviayicl2szlzfjx5crffp3pq75d5nz6ky3miai9l";
meta = with stdenv.lib; {
homepage = "https://github.com/robertohuertasm/microserver";
description = "Simple ad-hoc server with SPA support";
maintainers = with maintainers; [ flosse ];
license = licenses.mit;
};
}

View file

@ -5457,6 +5457,8 @@ in
microcom = callPackage ../applications/misc/microcom { };
microserver = callPackage ../servers/microserver { };
midisheetmusic = callPackage ../applications/audio/midisheetmusic { };
mikutter = callPackage ../applications/networking/instant-messengers/mikutter { };