python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / linenoise-ng / default.nix
blobd19d6748147cc1b3fe1743df04bcd5fc03992af8
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "linenoise-ng";
5   version = "1.0.1";
7   src = fetchFromGitHub {
8     owner = "arangodb";
9     repo = "linenoise-ng";
10     rev = "v${version}";
11     sha256 = "176iz0kj0p8d8i3jqps4z8xkxwl3f1986q88i9xg5fvqgpzsxp20";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = {
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;
22   };