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