2014-01-19 13:24:32 +01:00
|
|
|
{stdenv, fetchgit, autoreconfHook, pkgconfig, pcre, zlib, lzma}:
|
|
|
|
|
2014-01-27 22:17:23 +01:00
|
|
|
let release = "0.19.1"; in
|
2014-01-19 13:24:32 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "silver-searcher-${release}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/ggreer/the_silver_searcher.git";
|
|
|
|
rev = "refs/tags/${release}";
|
2014-01-27 22:17:23 +01:00
|
|
|
sha256 = "1km3ap74mls7vkp6si4f302zb1ifmldipjyfw2z9akqpvr3n44p9";
|
2014-01-19 13:24:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ autoreconfHook pkgconfig pcre zlib lzma ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/ggreer/the_silver_searcher/;
|
|
|
|
description = "A code-searching tool similar to ack, but faster";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.madjar ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|