2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2017-07-25 02:44:52 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "linenoise-ng-${version}";
|
|
|
|
version = "1.0.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "arangodb";
|
|
|
|
repo = "linenoise-ng";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "176iz0kj0p8d8i3jqps4z8xkxwl3f1986q88i9xg5fvqgpzsxp20";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/arangodb/linenoise-ng;
|
2017-07-25 02:44:52 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|