lnav: 0.8.1 -> 0.8.2

This commit is contained in:
Desmond O. Chang 2017-05-09 18:47:19 +08:00 committed by Franz Pletz
parent d43a2ef80a
commit c6c7197c7d

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pcre-cpp, sqlite, ncurses,
readline, zlib, bzip2, autoconf, automake }:
{ stdenv, fetchFromGitHub, pcre-cpp, sqlite, ncurses
, readline, zlib, bzip2, autoconf, automake, curl }:
stdenv.mkDerivation rec {
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
owner = "tstack";
repo = "lnav";
rev = "v${meta.version}";
sha256 = "0pag2rl7b6s2xfl80c629vhwsdvvlhcdy6732yvpgfv94w0zyjp9";
sha256 = "1jdjn64cxgbhhyg73cisrfrk7vjg1hr9nvkmfdk8gxc4g82y3xxc";
inherit name;
};
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
pcre-cpp
readline
sqlite
curl
];
preConfigure = ''
@ -42,7 +43,7 @@ stdenv.mkDerivation rec {
'';
downloadPage = "https://github.com/tstack/lnav/releases";
license = licenses.bsd2;
version = "0.8.1";
version = "0.8.2";
maintainers = [ maintainers.dochang ];
};