2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2020-04-08 14:40:42 +02:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, openssl
|
2020-05-25 06:23:23 +02:00
|
|
|
, Security
|
2020-04-08 14:40:42 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "monolith";
|
2021-03-11 03:35:38 +01:00
|
|
|
version = "2.4.1";
|
2020-04-08 14:40:42 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Y2Z";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-03-11 03:35:38 +01:00
|
|
|
sha256 = "sha256-n89rfZwR8B6SKeLtzmbeHRyw2G9NIQ1BY6JvJuZmC/w=";
|
2020-04-08 14:40:42 +02:00
|
|
|
};
|
|
|
|
|
2021-05-07 13:00:49 +02:00
|
|
|
cargoSha256 = "sha256-+UGGsBU12PzkrZ8Po8fJBs1pygdOvoHp0tKmipjVMQ4=";
|
2020-04-08 14:40:42 +02:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
|
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ Security ];
|
2020-04-08 14:40:42 +02:00
|
|
|
|
2020-05-25 06:23:23 +02:00
|
|
|
checkFlagsArray = [ "--skip=tests::cli" ];
|
2020-04-08 14:40:42 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-08 14:40:42 +02:00
|
|
|
description = "Bundle any web page into a single HTML file";
|
|
|
|
homepage = "https://github.com/Y2Z/monolith";
|
|
|
|
license = licenses.unlicense;
|
2020-11-17 12:02:06 +01:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2020-04-08 14:40:42 +02:00
|
|
|
};
|
|
|
|
}
|