Skip to content

Commit

Permalink
Merge pull request #41950 from dtzWill/feature/editline-pr
Browse files Browse the repository at this point in the history
editline: init at 1.15.3
  • Loading branch information
dtzWill authored Jun 18, 2018
2 parents 5e5bdfa + 4f1b14b commit 42a88a4
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 @@ -8930,6 +8930,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 42a88a4

Please sign in to comment.