stockholm/krebs/5pkgs/simple/urix.nix

16 lines
321 B
Nix
Raw Normal View History

2021-01-07 20:09:12 +00:00
let lib = import <stockholm/lib>; in
{ pkgs }:
# urix - URI eXtractor
# Extract all the URIs from standard input and write them to standard output!
# usage: urix < SOMEFILE
pkgs.execBin "urix" {
filename = "${pkgs.gnugrep}/bin/grep";
argv = [
"urix"
"-Eo"
"\\b${lib.uri.posix-extended-regex}\\b"
];
}