summary refs log tree commit diff
path: root/pkgs/tools/misc/mc/default.nix
blob: e5cce46bba85b65bb13e3981da4b23f72ce891b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
args: with args;

stdenv.mkDerivation rec {
  name = "mc-4.6.1";
  src = fetchurl {
    url = "http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/${name}.tar.gz";
    sha256 = "0zly25mwdn84s0wqx9mzyqi177mm828716nv1n6a4a5cm8yv0sh8";
  };
  buildInputs = [pkgconfig glib ncurses libX11];
  configureFlags = "--with-screen=ncurses";
  meta = {
	  description = "File Manager and User Shell for the GNU Project";
	  homepage = http://www.ibiblio.org/mc;
  };
}