4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, CoreServices, CoreFoundation, fetchpatch }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1";
|
|
pname = "qgrep";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zeux";
|
|
repo = "qgrep";
|
|
rev = "v${version}";
|
|
sha256 = "046ccw34vz2k5jn6gyxign5gs2qi7i50jy9b74wqv7sjf5zayrh0";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [
|
|
(fetchpatch {
|
|
url = "https://github.com/zeux/qgrep/commit/21c4d1a5ab0f0bdaa0b5ca993c1315c041418cc6.patch";
|
|
sha256 = "0wpxzrd9pmhgbgby17vb8279xwvkxfdd99gvv7r74indgdxqg7v8";
|
|
})
|
|
];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices CoreFoundation ];
|
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isAarch64 ''
|
|
substituteInPlace Makefile \
|
|
--replace "-msse2" "" --replace "-DUSE_SSE2" ""
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dm755 qgrep $out/bin/qgrep
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fast regular expression grep for source code with incremental index updates";
|
|
homepage = "https://github.com/zeux/qgrep";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.yrashk ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|