nixpkgs/pkgs/tools/misc/cicero-tui/default.nix

42 lines
815 B
Nix
Raw Normal View History

2021-02-14 17:49:00 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, cmake
, pkg-config
, expat
, fontconfig
, freetype
}:
rustPlatform.buildRustPackage rec {
pname = "cicero-tui";
2021-05-19 03:24:13 +00:00
version = "0.2.1";
2021-02-14 17:49:00 +00:00
src = fetchFromGitHub {
owner = "eyeplum";
repo = "cicero-tui";
rev = "v${version}";
2021-05-19 03:24:13 +00:00
sha256 = "sha256-FwjD+BdRc8y/g5MQLmBB/qkUj33cywbH2wjTp0y0s8A=";
2021-02-14 17:49:00 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
expat
fontconfig
freetype
];
2021-05-19 03:24:13 +00:00
cargoSha256 = "sha256-JygEE7K8swbFvJ2aDXs+INhfoLuhy+LY7T8AUr4lgJY=";
2021-02-14 17:49:00 +00:00
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;
};
}