1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/packages/heuretes.nix

16 lines
317 B
Nix
Raw Normal View History

{
writers,
fetchurl,
2025-06-03 14:55:03 +02:00
xan,
2025-12-13 23:02:53 +01:00
util-linux,
2025-12-27 22:22:54 +01:00
}:
let
database = fetchurl {
url = "http://c.krebsco.de/greek.csv";
hash = "sha256-SYL10kerNI0HzExG6JXh765+CBBCHLO95B6OKErQ/sU=";
};
in
2025-12-27 22:22:54 +01:00
writers.writeDashBin "heuretes" ''
${xan}/bin/xan search -s simple "$*" ${database} | ${util-linux}/bin/column -s, -t
''