Merge pull request #90021 from sikmir/agrep
This commit is contained in:
commit
7de048a9cc
|
@ -21,10 +21,12 @@ stdenv.mkDerivation {
|
||||||
install -Dm 444 docs/* -t "$out/doc"
|
install -Dm 444 docs/* -t "$out/doc"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Approximate grep for fast fuzzy string searching";
|
description = "Approximate grep for fast fuzzy string searching";
|
||||||
homepage = "https://www.tgries.de/agrep/";
|
homepage = "https://www.tgries.de/agrep/";
|
||||||
license = stdenv.lib.licenses.isc;
|
license = licenses.isc;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = with platforms; linux ++ darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue