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

36 lines
862 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.7.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 = "06nrb84xfvx02yc4bjn1szfq3bjy8mqgxwwrjghl7vpcw51qhlk5";
2018-11-20 22:02:24 +00:00
};
cargoSha256 = "0mk8hvhjqggfr410yka9ygb41l1bnsizs8py3100xf685yxy5mhl";
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 ];
2018-11-20 22:02:24 +00:00
maintainers = with maintainers; [ nequissimus ];
2020-04-14 04:43:26 +00:00
platforms = platforms.unix;
2018-11-20 22:02:24 +00:00
};
}