summary refs log blame commit diff
path: root/pkgs/development/libraries/linenoise-ng/default.nix
blob: 0a2dacb48db9de8b25cfbbef83cbaac02c5ebc50 (plain) (tree)
1
2
3
4
                                   

                         
                         











                                                                    
                                                          





                                                                                                                                          
{ stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  pname = "linenoise-ng";
  version = "1.0.1";

  src = fetchFromGitHub {
    owner = "arangodb";
    repo = "linenoise-ng";
    rev = "v${version}";
    sha256 = "176iz0kj0p8d8i3jqps4z8xkxwl3f1986q88i9xg5fvqgpzsxp20";
  };

  nativeBuildInputs = [ cmake ];

  meta = {
    homepage = "https://github.com/arangodb/linenoise-ng";
    description = "A small, portable GNU readline replacement for Linux, Windows and MacOS which is capable of handling UTF-8 characters";
    maintainers = with stdenv.lib.maintainers; [ cstrahan ];
    platforms = stdenv.lib.platforms.all;
    license = stdenv.lib.licenses.bsd3;
  };
}