yep, more dotfiles
1{ lib
2
3, rustPlatform
4, fetchFromGitHub
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "find_unicode";
9 version = "0.1.0";
10
11 src = fetchFromGitHub {
12 owner = "pierrechevalier83";
13 repo = pname;
14 rev = "3afc33a7056f6fadd3e1d1d216d89a2f78e3ed67";
15 hash = "sha256-hfTOUrFSlqOEzh2X3SnRx4UkmgCNDDfOjUT9325XSP8=";
16 };
17
18 cargoHash = "sha256-b+fRwdEI97Cljlz6r4sukPvkb9/x6UBKEhUDmLONh2w=";
19
20 meta = with lib; {
21 description = "Find Unicode characters, the easy way! A simple command line application to find unicode characters with minimum effort.";
22 homepage = "https://github.com/pierrechevalier83/find_unicode";
23 maintainers = [ "mrnossiom" ];
24 mainProgram = "fu";
25 };
26}