1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
nixpkgs/pkgs/tools/misc/miniserve/default.nix

33 lines
819 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";
2020-11-09 02:48:25 +00:00
version = "0.10.3";
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}";
2020-11-09 02:48:25 +00:00
sha256 = "17m0h0ib7fl0kijagcwdcnvrdcb6z3knix9dl17abg5ivbvkwz8q";
2018-11-20 22:02:24 +00:00
};
2020-11-09 02:48:25 +00:00
cargoSha256 = "0ddc8b9wph4r1qcy24p8yiaq9s2knii0d7dh0w0qnzrn6cmm17dg";
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 ];
maintainers = with maintainers; [ zowoq ];
2020-04-14 05:43:26 +01:00
platforms = platforms.unix;
2018-11-20 22:02:24 +00:00
};
}