1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4 pname = "linenoise-ng";
7 src = fetchFromGitHub {
11 sha256 = "176iz0kj0p8d8i3jqps4z8xkxwl3f1986q88i9xg5fvqgpzsxp20";
14 nativeBuildInputs = [ cmake ];
17 homepage = "https://github.com/arangodb/linenoise-ng";
18 description = "A small, portable GNU readline replacement for Linux, Windows and MacOS which is capable of handling UTF-8 characters";
19 maintainers = with lib.maintainers; [ cstrahan ];
20 platforms = lib.platforms.all;
21 license = lib.licenses.bsd3;