about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/microserver/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/microserver/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/microserver/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/microserver/default.nix b/nixpkgs/pkgs/servers/microserver/default.nix
new file mode 100644
index 000000000000..c6ca5edd70c7
--- /dev/null
+++ b/nixpkgs/pkgs/servers/microserver/default.nix
@@ -0,0 +1,25 @@
+{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin }:
+
+rustPlatform.buildRustPackage rec {
+   pname = "microserver";
+   version = "0.2.1";
+
+  src = fetchFromGitHub {
+    owner = "robertohuertasm";
+    repo = "microserver";
+    rev = "v${version}";
+    sha256 = "sha256-VgzOdJ1JLe0acjRYvaysCPox5acFmc4VD2f6HZWxT8M=";
+  };
+
+  cargoSha256 = "sha256-JGsMtlWuww1rYE4w6i2VlyD6gGHqnLehLDZmW57R+Fo=";
+
+  buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security ]);
+
+  meta = with lib; {
+    homepage = "https://github.com/robertohuertasm/microserver";
+    description = "Simple ad-hoc server with SPA support";
+    maintainers = with maintainers; [ flosse ];
+    license = licenses.mit;
+    mainProgram = "microserver";
+  };
+}