nixpkgs/pkgs/applications/misc/hstr/default.nix

26 lines
701 B
Nix
Raw Normal View History

2015-03-07 08:50:14 -05:00
{ stdenv, fetchurl, readline, ncurses }:
let
2017-02-15 07:43:19 -05:00
version = "1.22";
2015-03-07 08:50:14 -05:00
in
stdenv.mkDerivation rec {
name = "hstr-${version}";
src = fetchurl {
url = "https://github.com/dvorka/hstr/releases/download/${version}/hh-${version}-src.tgz";
2017-02-15 07:43:19 -05:00
sha256 = "09rh510x8qc5jbpnfzazbv9wc3bqmf5asydcl2wijpqm5bi21iqp";
2015-03-07 08:50:14 -05:00
};
buildInputs = [ readline ncurses ];
meta = {
homepage = "https://github.com/dvorka/hstr";
description = "Shell history suggest box - easily view, navigate, search and use your command history";
license = stdenv.lib.licenses.asl20;
maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
platforms = with stdenv.lib.platforms; linux; # Cannot test others
};
}