taizen: init at 0.1.0

Simple, ncurses-based client for mediawiki[1] written Rust.

[1] https://www.mediawiki.org/wiki/MediaWiki
This commit is contained in:
Maximilian Bosch 2019-12-05 22:15:00 +01:00
parent ea9c3b9342
commit 7846136912
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ rustPlatform, lib, fetchFromGitHub, ncurses, openssl, pkgconfig }:
rustPlatform.buildRustPackage rec {
pname = "taizen";
version = "0.1.0";
src = fetchFromGitHub {
owner = "NerdyPepper";
repo = pname;
rev = "5c1876429e2da7424e9d31b1e16f5a3147cc58d0";
sha256 = "09izgx7icvizskdy9kplk0am61p7550fsd0v42zcihq2vap2j92z";
};
buildInputs = [ ncurses openssl ];
nativeBuildInputs = [ pkgconfig ];
cargoSha256 = "0h8ybhb17pqhhfjcmq1l70kp8g1yyq38228lcf86byk3r2ar2rkg";
meta = with lib; {
homepage = https://crates.io/crates/taizen;
license = licenses.mit;
description = "curses based mediawiki browser";
maintainers = with maintainers; [ ma27 ];
};
}

View File

@ -21370,6 +21370,8 @@ in
tailor = callPackage ../applications/version-management/tailor {};
taizen = callPackage ../applications/misc/taizen { };
tangogps = callPackage ../applications/misc/tangogps {
gconf = gnome2.GConf;
};