2015-06-22 17:19:23 +03:00
|
|
|
{stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, pcre, zlib, lzma}:
|
2014-01-19 16:24:32 +04:00
|
|
|
|
2015-06-22 13:10:03 +03:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "silver-searcher-${version}";
|
2016-01-09 22:22:56 +03:00
|
|
|
version = "0.31.0";
|
2014-01-19 16:24:32 +04:00
|
|
|
|
2015-06-22 17:19:23 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ggreer";
|
|
|
|
repo = "the_silver_searcher";
|
|
|
|
rev = "${version}";
|
2016-01-09 22:22:56 +03:00
|
|
|
sha256 = "1xmvdi2nbmwkmrdwkqm3zm596dz1zx87bn8i0ylkmy8rvb8ybgdv";
|
2014-01-19 16:24:32 +04:00
|
|
|
};
|
|
|
|
|
2014-03-12 20:48:32 +04:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
2014-02-03 20:41:25 +04:00
|
|
|
|
2014-01-19 16:24:32 +04:00
|
|
|
buildInputs = [ autoreconfHook pkgconfig pcre zlib lzma ];
|
|
|
|
|
2015-06-22 09:25:07 +03:00
|
|
|
meta = with stdenv.lib; {
|
2014-01-19 16:24:32 +04:00
|
|
|
homepage = https://github.com/ggreer/the_silver_searcher/;
|
|
|
|
description = "A code-searching tool similar to ack, but faster";
|
2015-06-22 09:25:07 +03:00
|
|
|
maintainers = with maintainers; [ madjar jgeerds ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.asl20;
|
2014-01-19 16:24:32 +04:00
|
|
|
};
|
|
|
|
}
|