Skip to content

Commit

Permalink
editline: init at 1.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzWill committed Jun 13, 2018
1 parent 6845d18 commit 4f1b14b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/libraries/editline/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:

stdenv.mkDerivation rec {
name = "editline-${version}";
version = "1.15.3";
src = fetchFromGitHub {
owner = "troglobit";
repo = "editline";
rev = version;
sha256 = "0dm5fgq0acpprr938idwml64nclg9l6c6avirsd8r6f40qicbgma";
};

nativeBuildInputs = [ autoreconfHook ];

dontDisableStatic = true;

meta = with stdenv.lib; {
homepage = http://troglobit.com/editline.html;
description = "A readline() replacement for UNIX without termcap (ncurses)";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8926,6 +8926,8 @@ with pkgs;

eclib = callPackage ../development/libraries/eclib {};

editline = callPackage ../development/libraries/editline { };

eigen = callPackage ../development/libraries/eigen {};
eigen3_3 = callPackage ../development/libraries/eigen/3.3.nix {};

Expand Down

0 comments on commit 4f1b14b

Please sign in to comment.