2013-08-26 12:50:45 +00:00
|
|
|
|
{ stdenv, fetchurl, ncurses }:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-30 21:20:44 +00:00
|
|
|
|
name = "less-483";
|
2013-08-26 12:50:45 +00:00
|
|
|
|
|
2004-07-30 13:38:10 +00:00
|
|
|
|
src = fetchurl {
|
2014-09-23 09:26:04 +00:00
|
|
|
|
url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz";
|
2016-05-30 21:20:44 +00:00
|
|
|
|
sha256 = "07z43kwbmba2wh3q1gps09l72p8izfagygmqq1izi50s2h51mfvy";
|
2013-08-26 12:50:45 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Look for ‘sysless’ in /etc.
|
|
|
|
|
configureFlags = "--sysconfdir=/etc";
|
|
|
|
|
|
2015-04-14 11:19:44 +00:00
|
|
|
|
preConfigure = "chmod +x ./configure";
|
|
|
|
|
|
2013-08-26 12:50:45 +00:00
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://www.greenwoodsoftware.com/less/;
|
|
|
|
|
description = "A more advanced file pager than ‘more’";
|
2014-04-03 23:10:51 +00:00
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-08-26 12:50:45 +00:00
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2004-07-30 13:38:10 +00:00
|
|
|
|
};
|
|
|
|
|
}
|