1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Bump version of the_silver_searcher: 0.24.1 -> 0.29.1

This commit is contained in:
dabus 2015-03-25 17:43:13 +01:00
parent f5eed7e14e
commit f5200fd0aa

View file

@ -1,13 +1,13 @@
{stdenv, fetchgit, autoreconfHook, pkgconfig, pcre, zlib, lzma}:
let release = "0.24.1"; in
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 = "1cwav217mkbwyg8isiak0wynydiil2j9gy4sx79harbcql0f3nl3";
sha256 = "05508c2714d356464a0de6f41a6a8408ccd861b967e968302c4b72feade89581";
};
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";