summary refs log tree commit diff
path: root/pkgs/applications/misc/ydict/default.nix
blob: 1c57456f4a1993ad63555d7ca600866a083a12ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, fetchFromGitHub
, buildGoModule
, makeWrapper
, mpg123
}:

buildGoModule rec {
  pname = "ydict";
  version = "2.2.2";

  src = fetchFromGitHub {
    owner = "TimothyYe";
    repo = "ydict";
    rev = "v${version}";
    sha256 = "sha256-FcrkfWE1m5OveK4YPgVmUbL/jkh2NEs9bfeCHm2H9P8=";
  };

  vendorHash = "sha256-c5nQVQd4n978kFAAKcx5mX2Jz16ZOhS8iL/oxS1o5xs=";

  ldflags = [
    "-s"
    "-w"
    "-X=main.Version=${version}"
  ];

  nativeBuildInputs = [ makeWrapper ];

  preFixup = ''
    wrapProgram $out/bin/${pname} \
      --prefix PATH ":" "${lib.makeBinPath [ mpg123 ]}";
  '';

  # has no tests
  doCheck = false;

  meta = with lib; {
    description = "Yet another command-line Youdao Chinese dictionary";
    homepage = "https://github.com/TimothyYe/ydict";
    license = licenses.mit;
    maintainers = with maintainers; [ zendo ];
  };
}