mini-calc: 3.3.3 -> 3.3.5 (#372274)
[NixPkgs.git] / pkgs / by-name / li / linenoise-ng / package.nix
blob1b9ad3f243c4bf3d12c1815262bd8cec96b96a6d
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "linenoise-ng";
10   version = "1.0.1";
12   src = fetchFromGitHub {
13     owner = "arangodb";
14     repo = "linenoise-ng";
15     rev = "v${version}";
16     sha256 = "176iz0kj0p8d8i3jqps4z8xkxwl3f1986q88i9xg5fvqgpzsxp20";
17   };
19   nativeBuildInputs = [ cmake ];
21   meta = {
22     homepage = "https://github.com/arangodb/linenoise-ng";
23     description = "Small, portable GNU readline replacement for Linux, Windows and MacOS which is capable of handling UTF-8 characters";
24     maintainers = [ ];
25     platforms = lib.platforms.all;
26     license = lib.licenses.bsd3;
27   };