devserver: init at 0.4.0
This commit is contained in:
parent
931a98820b
commit
de2b7622bf
2 changed files with 31 additions and 0 deletions
29
pkgs/development/tools/rust/devserver/default.nix
Normal file
29
pkgs/development/tools/rust/devserver/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib
|
||||||
|
, fetchCrate
|
||||||
|
, rustPlatform
|
||||||
|
, openssl
|
||||||
|
, pkg-config
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "devserver";
|
||||||
|
version = "0.4.0";
|
||||||
|
|
||||||
|
src = fetchCrate {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-UcrLzsALwl0zqNRMS1kTTXsR6wN8XDd5Iq+yrudh6M4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-XlrQ6CvjeWnzvfaeNbe8FtMXMVSQNLxDVIEjyHm57Js=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "An extremely tiny tool to serve a static folder locally";
|
||||||
|
homepage = "https://github.com/kettle11/devserver";
|
||||||
|
license = licenses.zlib;
|
||||||
|
maintainers = with maintainers; [ nickhu ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -12690,6 +12690,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
devserver = callPackage ../development/tools/rust/devserver { };
|
||||||
|
|
||||||
maturin = callPackage ../development/tools/rust/maturin {
|
maturin = callPackage ../development/tools/rust/maturin {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue