tex-match: init at 1.2.0
This commit is contained in:
parent
19839492cc
commit
9063f676b7
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/typesetting/tex/tex-match/default.nix
Normal file
27
pkgs/tools/typesetting/tex/tex-match/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ rustPlatform, fetchFromGitHub, gtk3, pkg-config, glib, lib }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "tex-match";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zoeyfyi";
|
||||||
|
repo = "TeX-Match";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1yb81j7mbqqb8jcn78dx4ydp7ncbzvaczkli6cqay5jf5j6dbk1z";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config glib ];
|
||||||
|
|
||||||
|
buildInputs = [ gtk3 ];
|
||||||
|
|
||||||
|
cargoSha256 = "1sm2fd3dhs59rvmfjzrfz0qwqzyc9dllb8ph0wc2x0r3px16c71x";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Search through over 1000 different LaTeX symbols by sketching. A desktop version of detexify";
|
||||||
|
homepage = "https://tex-match.zoey.fyi/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.bootstrap-prime ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8529,6 +8529,8 @@ in
|
||||||
|
|
||||||
texworks = libsForQt5.callPackage ../applications/editors/texworks { };
|
texworks = libsForQt5.callPackage ../applications/editors/texworks { };
|
||||||
|
|
||||||
|
tex-match = callPackage ../tools/typesetting/tex/tex-match { };
|
||||||
|
|
||||||
thc-hydra = callPackage ../tools/security/thc-hydra { };
|
thc-hydra = callPackage ../tools/security/thc-hydra { };
|
||||||
|
|
||||||
thc-ipv6 = callPackage ../tools/security/thc-ipv6 { };
|
thc-ipv6 = callPackage ../tools/security/thc-ipv6 { };
|
||||||
|
|
Loading…
Reference in a new issue