12c01a01ca
https://github.com/dvorka/hstr/releases/tag/2.4 https://github.com/dvorka/hstr/releases/tag/2.5
29 lines
781 B
Nix
29 lines
781 B
Nix
{ lib, stdenv, fetchFromGitHub, readline, ncurses
|
|
, autoreconfHook, pkg-config, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hstr";
|
|
version = "2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dvorka";
|
|
repo = "hstr";
|
|
rev = version;
|
|
sha256 = "sha256-qIMnU+gRR3HPAOrrrduN68R5E8ZJKROfZ0sEHL0E4XU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ readline ncurses gettext ];
|
|
|
|
configureFlags = [ "--prefix=$(out)" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/dvorka/hstr";
|
|
description = "Shell history suggest box - easily view, navigate, search and use your command history";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.matthiasbeyer ];
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
};
|
|
|
|
}
|