mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
agrep: enable on darwin
This commit is contained in:
parent
adbace3c21
commit
c4cd635283
@ -21,10 +21,12 @@ stdenv.mkDerivation {
|
||||
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";
|
||||
homepage = "https://www.tgries.de/agrep/";
|
||||
license = stdenv.lib.licenses.isc;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = licenses.isc;
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user