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

37 lines
885 B
Nix
Raw Normal View History

{ lib
, stdenv
2020-04-14 06:43:26 +02:00
, rustPlatform
, fetchFromGitHub
, pkg-config
, zlib
, libiconv
2020-04-14 06:43:26 +02:00
, Security
}:
2018-11-20 23:02:24 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "miniserve";
2021-03-27 17:49:01 +01:00
version = "0.12.1";
2018-11-20 23:02:24 +01:00
src = fetchFromGitHub {
2020-04-14 06:43:26 +02:00
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
2021-03-27 17:49:01 +01:00
sha256 = "sha256-1LyDwQWC8cb3Sq8lZ9eDpZMcu5/yh0BJFuOWQ3iTtpY=";
2018-11-20 23:02:24 +01:00
};
2021-03-27 17:49:01 +01:00
cargoSha256 = "sha256-11aP0/p9wC9o1KuM+CLAuHhZxuYff6nvJPj0/yjb1+E=";
2018-11-20 23:02:24 +01:00
2020-04-14 06:43:26 +02:00
nativeBuildInputs = [ pkg-config zlib ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
checkFlags = [ "--skip=cant_navigate_up_the_root" ];
2018-11-20 23:02:24 +01:00
meta = with lib; {
2018-11-20 23:02:24 +01:00
description = "For when you really just want to serve some files over HTTP right now!";
2020-04-14 06:43:26 +02:00
homepage = "https://github.com/svenstaro/miniserve";
license = with licenses; [ mit ];
maintainers = with maintainers; [ zowoq ];
2020-04-14 06:43:26 +02:00
platforms = platforms.unix;
2018-11-20 23:02:24 +01:00
};
}