rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / applications / misc / hstr / default.nix
blob2963ba732f059cf924be629c8ceb97083a25236d
1 { lib, stdenv, fetchFromGitHub, readline, ncurses
2 , autoreconfHook, pkg-config, gettext }:
4 stdenv.mkDerivation rec {
5   pname = "hstr";
6   version = "3.1";
8   src = fetchFromGitHub {
9     owner  = "dvorka";
10     repo   = "hstr";
11     rev    = version;
12     hash   = "sha256-OuLy1aiEwUJDGy3+UXYF1Vx1nNXic46WIZEM1xrIPfA=";
13   };
15   nativeBuildInputs = [ autoreconfHook pkg-config ];
16   buildInputs = [ readline ncurses gettext ];
18   configureFlags = [ "--prefix=$(out)" ];
20   meta = {
21     homepage = "https://github.com/dvorka/hstr";
22     description = "Shell history suggest box - easily view, navigate, search and use your command history";
23     license = lib.licenses.asl20;
24     maintainers = [ lib.maintainers.matthiasbeyer ];
25     platforms = with lib.platforms; linux ++ darwin;
26   };