summary refs log tree commit diff
path: root/pkgs/tools/misc/miniserve/default.nix
blob: ea3afdab0982f34bfa32be0dcb6f19c13ee0e9bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, zlib
, openssl
, Security
}:

rustPlatform.buildRustPackage rec {
  pname = "miniserve";
  version = "0.6.0";

  src = fetchFromGitHub {
    owner = "svenstaro";
    repo = "miniserve";
    rev = "v${version}";
    sha256 = "0ybxnxjg0vqm4q60z4zjl3hfls0s2rvy44m6jgyhlj1p6cr3dbyw";
  };

  cargoSha256 = "0ypxv9wqcnjxjdrvdparddpssrarnifr43dq7kcr4l3fd1anl40a";

  RUSTC_BOOTSTRAP = 1;

  nativeBuildInputs = [ pkg-config zlib ];
  buildInputs = if stdenv.isDarwin then [ Security ] else [ openssl ];

  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.unix;
  };
}