python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / taizen / default.nix
blob405cbe12cc3ba461cef4ed52ef65b161cf9f2576
1 { rustPlatform, lib, fetchFromGitHub, ncurses, openssl, pkg-config, Security, stdenv }:
3 rustPlatform.buildRustPackage rec {
4   pname = "taizen";
5   version = "0.1.0";
7   src = fetchFromGitHub {
8     owner = "NerdyPepper";
9     repo = pname;
10     rev = "5c1876429e2da7424e9d31b1e16f5a3147cc58d0";
11     sha256 = "09izgx7icvizskdy9kplk0am61p7550fsd0v42zcihq2vap2j92z";
12   };
14   buildInputs = [ ncurses openssl ] ++ lib.optional stdenv.isDarwin Security;
15   nativeBuildInputs = [ pkg-config ];
17   cargoSha256 = "1yqy5v02a4qshgb7k8rnn408k3n6qx3jc8zziwvv7im61n9sjynf";
19   meta = with lib; {
20     homepage = "https://crates.io/crates/taizen";
21     license = licenses.mit;
22     description = "curses based mediawiki browser";
23     maintainers = with maintainers; [ ];
24   };