grip-search: init at 0.8
This commit is contained in:
parent
ae50241871
commit
2bf8cccc0d
31
pkgs/tools/text/grip-search/default.nix
Normal file
31
pkgs/tools/text/grip-search/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, boost, pkgconfig, cmake, catch2 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "grip-search";
|
||||||
|
version = "0.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sc0ty";
|
||||||
|
repo = "grip";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0bkqarylgzhis6fpj48qbifcd6a26cgnq8784hgnm707rq9kb0rx";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig cmake catch2 ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
buildInputs = [ boost ];
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
substituteInPlace src/general/config.h --replace "CUSTOM-BUILD" "${version}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Fast, indexed regexp search over large file trees";
|
||||||
|
homepage = "https://github.com/sc0ty/grip";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ tex ];
|
||||||
|
};
|
||||||
|
}
|
@ -17529,6 +17529,8 @@ in
|
|||||||
|
|
||||||
grepm = callPackage ../applications/search/grepm { };
|
grepm = callPackage ../applications/search/grepm { };
|
||||||
|
|
||||||
|
grip-search = callPackage ../tools/text/grip-search { };
|
||||||
|
|
||||||
grip = callPackage ../applications/misc/grip {
|
grip = callPackage ../applications/misc/grip {
|
||||||
inherit (gnome2) libgnome libgnomeui vte;
|
inherit (gnome2) libgnome libgnomeui vte;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user