Merge pull request #168771 from zendo/ydict

main
Sandro 2 years ago committed by GitHub
commit 65b2d77ac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 28
      pkgs/applications/misc/ydict/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -14228,6 +14228,12 @@
github = "zbioe";
githubId = 7332055;
};
zendo = {
name = "zendo";
email = "linzway@qq.com";
github = "zendo";
githubId = 348013;
};
zenithal = {
name = "zenithal";
email = "i@zenithal.me";

@ -0,0 +1,28 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "ydict";
version = "2.2.0";
src = fetchFromGitHub {
owner = "TimothyYe";
repo = "ydict";
rev = "v${version}";
sha256 = "sha256-zhjsXZsRk0UNijjqjGjZh4TiPxAM5p+ic3JMx2wrPeY=";
};
vendorSha256 = "sha256-O6czDfKD18rGVMIZv6II09oQu1w0ijQRuZRGt2gj9Cs=";
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
# has no tests
doCheck = false;
meta = with lib; {
description = "A command-line Chinese dictionary";
homepage = "https://github.com/TimothyYe/ydict";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ zendo ];
};
}

@ -30478,6 +30478,8 @@ with pkgs;
ydiff = with python3.pkgs; toPythonApplication ydiff;
ydict = callPackage ../applications/misc/ydict {};
yed = callPackage ../applications/graphics/yed {};
yeetgif = callPackage ../applications/graphics/yeetgif { };

Loading…
Cancel
Save