1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00
nixpkgs/pkgs/misc/wiki-tui/default.nix

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

49 lines
1.1 KiB
Nix
Raw Normal View History

2024-08-14 10:24:25 +01:00
{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
ncurses,
openssl,
pkg-config,
Security,
2023-01-01 17:34:59 +00:00
}:
2021-10-10 02:50:44 +01:00
rustPlatform.buildRustPackage rec {
pname = "wiki-tui";
2023-08-18 13:09:21 +01:00
version = "0.8.2";
2021-10-10 02:50:44 +01:00
2021-11-05 20:10:43 +00:00
src = fetchFromGitHub {
owner = "Builditluc";
repo = "wiki-tui";
2021-11-05 20:10:43 +00:00
rev = "v${version}";
2023-08-18 13:09:21 +01:00
hash = "sha256-euyg4wYWYerYT3hKdOCjokx8lJldGN7E3PHimDgQy3U=";
2021-10-10 02:50:44 +01:00
};
# Note: bump `time` dependency to be able to build with rust 1.80, should be removed on the next
# release (see: https://github.com/NixOS/nixpkgs/issues/332957)
cargoPatches = [ ./time.patch ];
2024-08-14 10:24:25 +01:00
nativeBuildInputs = [ pkg-config ];
2021-10-10 02:50:44 +01:00
2023-01-01 17:34:59 +00:00
buildInputs = [
ncurses
openssl
2024-08-14 10:24:25 +01:00
] ++ lib.optionals stdenv.isDarwin [ Security ];
2021-10-10 02:50:44 +01:00
cargoHash = "sha256-XovbT+KC0va7yC5j7kf6t1SnXe1uyy1KI8FRV1AwkS0=";
2021-10-10 02:50:44 +01:00
meta = with lib; {
description = "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 02:50:44 +01:00
license = licenses.mit;
2024-08-14 10:24:25 +01:00
maintainers = with maintainers; [
lom
builditluc
matthiasbeyer
];
2023-11-23 21:09:35 +00:00
mainProgram = "wiki-tui";
2021-10-10 02:50:44 +01:00
};
}