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

36 lines
868 B
Nix
Raw Normal View History

2020-04-14 04:43:26 +00:00
{ stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, zlib
, openssl
, Security
}:
2018-11-20 22:02:24 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "miniserve";
version = "0.8.0";
2018-11-20 22:02:24 +00:00
src = fetchFromGitHub {
2020-04-14 04:43:26 +00:00
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
sha256 = "1h4872jb0xz8yzs02q8wfvqrp20y7kdva5ka6bh6nq4jrnnky8zb";
2018-11-20 22:02:24 +00:00
};
cargoSha256 = "1vq1rrav9r9z4y0v7hpn0fcq64slq4zrm2pybmnmb7h9nfxxyr6k";
2019-12-21 03:41:06 +00:00
RUSTC_BOOTSTRAP = 1;
2018-11-20 22:02:24 +00:00
2020-04-14 04:43:26 +00:00
nativeBuildInputs = [ pkg-config zlib ];
buildInputs = if stdenv.isDarwin then [ Security ] else [ openssl ];
2018-11-20 22:02:24 +00:00
meta = with stdenv.lib; {
description = "For when you really just want to serve some files over HTTP right now!";
2020-04-14 04:43:26 +00:00
homepage = "https://github.com/svenstaro/miniserve";
license = with licenses; [ mit ];
2020-06-08 03:24:35 +00:00
maintainers = with maintainers; [ nequissimus zowoq ];
2020-04-14 04:43:26 +00:00
platforms = platforms.unix;
2018-11-20 22:02:24 +00:00
};
}