forked from lix-project/lix
Remove editline expression, not needed anymore
This commit is contained in:
parent
6c6bbeb439
commit
9dc9b64aad
24
editline.nix
24
editline.nix
|
@ -1,24 +0,0 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "editline-${version}";
|
||||
version = "1.16.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "troglobit";
|
||||
repo = "editline";
|
||||
rev = version;
|
||||
sha256 = "0a751dp34mk9hwv59ss447csknpm5i5cgd607m3fqf24rszyhbf2";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -29,8 +29,6 @@ rec {
|
|||
'';
|
||||
});
|
||||
|
||||
editline = pkgs.editline or (pkgs.callPackage ./editline.nix {});
|
||||
|
||||
configureFlags =
|
||||
[
|
||||
"--enable-gc"
|
||||
|
|
Loading…
Reference in a new issue