lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v206 24 lines 653 B view raw
1{ stdenv, fetchurl, ncurses }: 2 3stdenv.mkDerivation rec { 4 name = "less-481"; 5 6 src = fetchurl { 7 url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; 8 sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz"; 9 }; 10 11 # Look for ‘sysless’ in /etc. 12 configureFlags = "--sysconfdir=/etc"; 13 14 preConfigure = "chmod +x ./configure"; 15 16 buildInputs = [ ncurses ]; 17 18 meta = { 19 homepage = http://www.greenwoodsoftware.com/less/; 20 description = "A more advanced file pager than more"; 21 platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 22 maintainers = [ stdenv.lib.maintainers.eelco ]; 23 }; 24}