nixpkgs/pkgs/tools/misc/miniserve/default.nix

33 lines
810 B
Nix
Raw Normal View History

{ lib, stdenv
2020-04-14 05:43:26 +01:00
, rustPlatform
, fetchFromGitHub
, pkg-config
, zlib
, Security
}:
2018-11-20 22:02:24 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 12:41:23 +01:00
pname = "miniserve";
version = "0.10.4";
2018-11-20 22:02:24 +00:00
src = fetchFromGitHub {
2020-04-14 05:43:26 +01:00
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
sha256 = "0hskb72gnp66vkyxsqnxhjcqgvjj7wbd2nm5wxp94abc5l1fiigv";
2018-11-20 22:02:24 +00:00
};
cargoSha256 = "0s1gdngpf6gxz2lyapblxxmc6aydg2i9kmrfvngkbmqh4as1a2vl";
2018-11-20 22:02:24 +00:00
2020-04-14 05:43:26 +01:00
nativeBuildInputs = [ pkg-config zlib ];
2021-01-15 09:19:50 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2018-11-20 22:02:24 +00:00
meta = with lib; {
2018-11-20 22:02:24 +00:00
description = "For when you really just want to serve some files over HTTP right now!";
2020-04-14 05:43:26 +01:00
homepage = "https://github.com/svenstaro/miniserve";
license = with licenses; [ mit ];
maintainers = with maintainers; [ zowoq ];
2020-04-14 05:43:26 +01:00
platforms = platforms.unix;
2018-11-20 22:02:24 +00:00
};
}