Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0a7bc4645b1f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4f9631663f3e
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 15, 2019

  1. less: 530 -> 551

    At long last! \o/
    
    pname-ify while visiting.
    
    http://greenwoodsoftware.com/less/news.551.html
    dtzWill authored and FRidh committed Jun 15, 2019
    Copy the full SHA
    4f96316 View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 pkgs/tools/misc/less/default.nix
9 changes: 5 additions & 4 deletions pkgs/tools/misc/less/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, ncurses, lessSecure ? false }:

stdenv.mkDerivation rec {
name = "less-530";
pname = "less";
version = "551";

src = fetchurl {
url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz";
sha256 = "1qpj2z38c53qmvqn8jaa0kq26q989cfbfjj4y0s6z17l1amr2gsh";
url = "http://www.greenwoodsoftware.com/${pname}/${pname}-${version}.tar.gz";
sha256 = "0ggyjl3yzn7c450zk1rixi9ls6asdhgqynhk34zsd0ckhmsm45pz";
};

configureFlags = [ "--sysconfdir=/etc" ] # Look for ‘sysless’ in /etc.
@@ -18,6 +19,6 @@ stdenv.mkDerivation rec {
description = "A more advanced file pager than ‘more’";
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = [ maintainers.eelco ];
maintainers = with maintainers; [ eelco dtzWill ];
};
}