Merge pull request #242908 from donovanglover/tango

tango: init at 1.1.0
This commit is contained in:
Pol Dellaiera 2023-07-14 16:30:05 +02:00 committed by GitHub
commit 6262b10ef1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tango";
version = "1.1.0";
src = fetchFromGitHub {
owner = "masakichi";
repo = "tango";
rev = "v${version}";
hash = "sha256-e/M2iRm/UwfnRVnMo1PmQTkz4IGTxnsCXNSSUkhsiHk=";
};
vendorHash = "sha256-83nKtiEy1na1HgAQcbTEfl+0vGg6BkCLBK1REN9fP+k=";
meta = with lib; {
description = "A local command-line Japanese dictionary tool using yomichan's dictionary files";
homepage = "https://github.com/masakichi/tango";
license = licenses.mit;
maintainers = with maintainers; [ donovanglover ];
};
}

View file

@ -13176,6 +13176,8 @@ with pkgs;
tandoor-recipes = callPackage ../applications/misc/tandoor-recipes { };
tango = callPackage ../applications/misc/tango { };
tangram = callPackage ../applications/networking/instant-messengers/tangram { };
t1utils = callPackage ../tools/misc/t1utils { };