Merge pull request #97748 from flosse/microserver
microserver: init at 0.1.8
This commit is contained in:
commit
f6e70564fc
22
pkgs/servers/microserver/default.nix
Normal file
22
pkgs/servers/microserver/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user