3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/miniserve/default.nix

32 lines
914 B
Nix
Raw Normal View History

2019-12-21 03:41:06 +00:00
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib, openssl }:
2018-11-20 22:02:24 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 12:41:23 +01:00
pname = "miniserve";
2019-12-21 03:41:06 +00:00
version = "0.5.0";
2018-11-20 22:02:24 +00:00
src = fetchFromGitHub {
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
2019-12-21 03:41:06 +00:00
sha256 = "06cxkkf3sf84prba65dymr1hg7mwizmsax0dlljh0lcmvlcpzi08";
2018-11-20 22:02:24 +00:00
};
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
2019-12-21 03:41:06 +00:00
cargoSha256 = "046xxxqcf1sdsi9dlilsn0nk36gyca20ck1a70ihj1k9kl7yj8sn";
RUSTC_BOOTSTRAP = 1;
2018-11-20 22:02:24 +00:00
nativeBuildInputs = [ cmake pkgconfig zlib ];
2019-12-21 03:41:06 +00:00
buildInputs = [ 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!";
homepage = https://github.com/svenstaro/miniserve;
license = with licenses; [ mit ];
maintainers = with maintainers; [ nequissimus ];
platforms = platforms.linux;
};
}