2021-01-17 02:09:27 +00:00
|
|
|
{ rustPlatform, lib, fetchFromGitHub, ncurses, openssl, pkg-config, Security, stdenv }:
|
2019-12-05 21:15:00 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "taizen";
|
|
|
|
version = "0.1.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NerdyPepper";
|
|
|
|
repo = pname;
|
|
|
|
rev = "5c1876429e2da7424e9d31b1e16f5a3147cc58d0";
|
|
|
|
sha256 = "09izgx7icvizskdy9kplk0am61p7550fsd0v42zcihq2vap2j92z";
|
|
|
|
};
|
|
|
|
|
2019-12-28 14:00:44 +00:00
|
|
|
buildInputs = [ ncurses openssl ] ++ lib.optional stdenv.isDarwin Security;
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-12-05 21:15:00 +00:00
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "1yqy5v02a4qshgb7k8rnn408k3n6qx3jc8zziwvv7im61n9sjynf";
|
2019-12-05 21:15:00 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://crates.io/crates/taizen";
|
2019-12-05 21:15:00 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
description = "curses based mediawiki browser";
|
2021-08-27 21:09:49 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2019-12-05 21:15:00 +00:00
|
|
|
};
|
|
|
|
}
|