nixpkgs/pkgs/applications/misc/unipicker/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1020 B
Nix
Raw Normal View History

2021-03-25 16:22:20 +00:00
{ stdenv, fetchFromGitHub, lib, fzf, xclip }:
stdenv.mkDerivation rec {
pname = "unipicker";
version = "2.0.1";
2021-03-25 16:22:20 +00:00
src = fetchFromGitHub {
owner = "jeremija";
repo = pname;
rev = "v${version}";
2021-03-25 16:22:20 +00:00
sha256 = "1k4v53pm3xivwg9vq2kndpcmah0yn4679r5jzxvg38bbkfdk86c1";
};
buildInputs = [
fzf
xclip
];
preInstall = ''
2021-08-15 10:43:48 +01:00
substituteInPlace unipicker \
--replace "/etc/unipickerrc" "$out/etc/unipickerrc" \
--replace "fzf" "${fzf}/bin/fzf"
substituteInPlace unipickerrc \
--replace "/usr/local" "$out" \
--replace "fzf" "${fzf}/bin/fzf"
2021-03-25 16:22:20 +00:00
'';
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; [ kiyengar ];
2021-08-15 10:43:48 +01:00
platforms = platforms.unix;
2021-03-25 16:22:20 +00:00
};
}