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

36 lines
930 B
Nix
Raw Normal View History

2020-04-14 05:43:26 +01:00
{ stdenv
, 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.9.0";
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 = "1abmg2zk1qipqdl1yfj8ibm1w8n7fazxqccsg1gq4xzlhhfp3m2l";
2018-11-20 22:02:24 +00:00
};
cargoSha256 = "0l750067x8k92ngg32bb8mnbq09aj65sdnpzdhij9n1mh90rkck9";
2019-12-21 03:41:06 +00:00
RUSTC_BOOTSTRAP = 1;
2018-11-20 22:02:24 +00:00
2020-04-14 05:43:26 +01:00
nativeBuildInputs = [ pkg-config zlib ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
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 05:43:26 +01:00
homepage = "https://github.com/svenstaro/miniserve";
license = with licenses; [ mit ];
2020-06-08 04:24:35 +01:00
maintainers = with maintainers; [ nequissimus zowoq ];
2020-04-14 05:43:26 +01:00
platforms = platforms.unix;
broken = stdenv.isDarwin; # https://github.com/NixOS/nixpkgs/pull/98181
2018-11-20 22:02:24 +00:00
};
}