mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29 lines
782 B
Nix
29 lines
782 B
Nix
{ lib, stdenv, fetchFromGitHub, readline, ncurses
|
|
, autoreconfHook, pkg-config, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hstr";
|
|
version = "2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dvorka";
|
|
repo = "hstr";
|
|
rev = version;
|
|
sha256 = "1chmfdi1dwg3sarzd01nqa82g65q7wdr6hrnj96l75vikwsg986y";
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
}
|