2019-07-05 13:43:29 +02:00
|
|
|
{ stdenv, fetchFromGitHub, readline, ncurses
|
|
|
|
, autoreconfHook, pkgconfig, gettext }:
|
2015-03-07 14:50:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "hstr";
|
2019-12-23 17:56:26 +01:00
|
|
|
version = "2.2";
|
2015-03-07 14:50:14 +01:00
|
|
|
|
2019-07-05 13:43:29 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dvorka";
|
|
|
|
repo = "hstr";
|
|
|
|
rev = version;
|
2019-12-23 17:56:26 +01:00
|
|
|
sha256 = "07fkilqlkpygvf9kvxyvl58g3lfq0bwwdp3wczy4hk8qlbhmgihn";
|
2015-03-07 14:50:14 +01:00
|
|
|
};
|
|
|
|
|
2019-07-05 13:43:29 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ readline ncurses gettext ];
|
|
|
|
|
2020-06-24 00:17:05 +02:00
|
|
|
configureFlags = [ "--prefix=$(out)" ];
|
2015-03-07 14:50:14 +01:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/dvorka/hstr";
|
2015-03-07 14:50:14 +01:00
|
|
|
description = "Shell history suggest box - easily view, navigate, search and use your command history";
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
2019-02-20 19:52:48 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
|
2015-03-07 14:50:14 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux; # Cannot test others
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|