3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #168771 from zendo/ydict

This commit is contained in:
Sandro 2022-04-18 01:14:06 +02:00 committed by GitHub
commit 65b2d77ac7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View file

@ -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";

View file

@ -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 ];
};
}

View file

@ -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 { };