mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #113131 from SCOTT-HAMILTON/cicero-tui
This commit is contained in:
commit
7ad472a316
41
pkgs/tools/misc/cicero-tui/default.nix
Normal file
41
pkgs/tools/misc/cicero-tui/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, pkg-config
|
||||
, expat
|
||||
, fontconfig
|
||||
, freetype
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cicero-tui";
|
||||
version = "0.1.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eyeplum";
|
||||
repo = "cicero-tui";
|
||||
rev = "v${version}";
|
||||
sha256 = "1bz2y37qf9c3fxc73chb42rffdivp5krczhgd9rnwq5r6n6bdgq7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
buildInputs = [
|
||||
expat
|
||||
fontconfig
|
||||
freetype
|
||||
];
|
||||
|
||||
cargoSha256 = "04359gf9mirczqwh8jv3rf0cc4pp05r8ncqyz0n8r7x5qv77kgcp";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unicode tool with a terminal user interface";
|
||||
homepage = "https://github.com/eyeplum/cicero-tui";
|
||||
license = with licenses; [ gpl3Plus ];
|
||||
maintainers = with maintainers; [ shamilton ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -3102,6 +3102,8 @@ in
|
||||
|
||||
chunksync = callPackage ../tools/backup/chunksync { };
|
||||
|
||||
cicero-tui = callPackage ../tools/misc/cicero-tui { };
|
||||
|
||||
cipherscan = callPackage ../tools/security/cipherscan {
|
||||
openssl = if stdenv.hostPlatform.system == "x86_64-linux"
|
||||
then openssl-chacha
|
||||
|
Loading…
Reference in New Issue
Block a user