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

34 lines
809 B
Nix
Raw Normal View History

{ lib
, stdenv
2020-04-14 05:43:26 +01:00
, 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.11.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 = "sha256-/vtiHRHsbF7lfn9tfgfKhm5YwofjSJniNNnKahphHFg=";
2018-11-20 22:02:24 +00:00
};
cargoSha256 = "sha256-gwy/LeVznZyawliXnkULyyVSXATk0sjSTUZPHO2K+9o=";
2018-11-20 22:02:24 +00:00
2020-04-14 05:43:26 +01:00
nativeBuildInputs = [ pkg-config zlib ];
2021-01-15 09:19:50 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2018-11-20 22:02:24 +00:00
meta = with lib; {
2018-11-20 22:02:24 +00:00
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
};
}