about summary refs log tree commit diff
path: root/pkgs/applications/misc/unipicker/default.nix
blob: e13d27ce4408fb0b010eb1b3339d7cb38c748e39 (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
{ stdenv, fetchFromGitHub, lib, fzf, xclip }:

stdenv.mkDerivation rec {
   pname = "unipicker";
   version = "2.0.1";

   src = fetchFromGitHub {
      owner = "jeremija";
      repo = pname;
      rev = "v${version}";
      sha256 = "1k4v53pm3xivwg9vq2kndpcmah0yn4679r5jzxvg38bbkfdk86c1";
   };

   buildInputs = [
      fzf
      xclip
   ];

   preInstall = ''
      substituteInPlace unipicker \
        --replace "/etc/unipickerrc" "$out/etc/unipickerrc" \
        --replace "fzf" "${fzf}/bin/fzf"
      substituteInPlace unipickerrc \
        --replace "/usr/local" "$out" \
        --replace "fzf" "${fzf}/bin/fzf"
   '';

   makeFlags = [
      "PREFIX=$(out)"
      "DESTDIR=$(out)"
   ];

   meta = with lib; {
    description = "A CLI utility for searching unicode characters by description and optionally copying them to clipboard";
    homepage = "https://github.com/jeremija/unipicker";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    platforms = platforms.unix;
    mainProgram = "unipicker";
   };
}