nixpkgs/pkgs/misc/wiki-tui/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
885 B
Nix
Raw Normal View History

2023-01-01 17:34:59 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, ncurses
, openssl
, pkg-config
, Security
}:
2021-10-10 01:50:44 +00:00
rustPlatform.buildRustPackage rec {
pname = "wiki-tui";
2023-02-23 09:14:11 +00:00
version = "0.6.4";
2021-10-10 01:50:44 +00:00
2021-11-05 20:10:43 +00:00
src = fetchFromGitHub {
owner = "Builditluc";
repo = pname;
rev = "v${version}";
2023-02-23 09:14:11 +00:00
hash = "sha256-pjNXDU1YgzaH4vtdQnnfRCSmbhIgeAiOP/uyhBNG/7s=";
2021-10-10 01:50:44 +00:00
};
2023-01-01 17:34:59 +00:00
nativeBuildInputs = [
pkg-config
];
2021-10-10 01:50:44 +00:00
2023-01-01 17:34:59 +00:00
buildInputs = [
ncurses
openssl
] ++ lib.optional stdenv.isDarwin [
Security
];
2021-10-10 01:50:44 +00:00
2023-02-23 09:14:11 +00:00
cargoHash = "sha256-RWj1QCHYEtw+QzdX+YlFiMqMhvCfxYzj6SUzfhqrcM8=";
2021-10-10 01:50:44 +00:00
meta = with lib; {
description = "A simple and easy to use Wikipedia Text User Interface";
homepage = "https://github.com/builditluc/wiki-tui";
2023-01-01 17:34:59 +00:00
changelog = "https://github.com/Builditluc/wiki-tui/releases/tag/v${version}";
2021-10-10 01:50:44 +00:00
license = licenses.mit;
2022-04-17 10:28:34 +00:00
maintainers = with maintainers; [ lom builditluc ];
2021-10-10 01:50:44 +00:00
};
}