Merge pull request #242908 from donovanglover/tango
tango: init at 1.1.0
This commit is contained in:
commit
6262b10ef1
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/misc/tango/default.nix
Normal file
25
pkgs/applications/misc/tango/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue