nixpkgs/pkgs/tools/text/silver-searcher/default.nix
2015-06-22 08:26:09 +02:00

25 lines
774 B
Nix

{stdenv, fetchgit, autoreconfHook, pkgconfig, pcre, zlib, lzma}:
let release = "0.29.1"; in
stdenv.mkDerivation {
name = "silver-searcher-${release}";
src = fetchgit {
url = "https://github.com/ggreer/the_silver_searcher.git";
rev = "refs/tags/${release}";
sha256 = "05508c2714d356464a0de6f41a6a8408ccd861b967e968302c4b72feade89581";
};
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
buildInputs = [ autoreconfHook pkgconfig pcre zlib lzma ];
meta = with stdenv.lib; {
homepage = https://github.com/ggreer/the_silver_searcher/;
description = "A code-searching tool similar to ack, but faster";
maintainers = with maintainers; [ madjar jgeerds ];
platforms = platforms.all;
license = licenses.asl20;
};
}