summary refs log tree commit diff
path: root/pkgs/tools/misc/minicom/2.3.nix
blob: 9be249231c37e9219e0cd24d6ef82c38c2c33c71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
args : with args; 
rec {
  src = fetchurl {
    url = http://alioth.debian.org/frs/download.php/2332/minicom-2.3.tar.gz;
    sha256 = "1ysn0crdhvwyvdlbw0ms5nq06xy2pd2glwjs53p384byl3ac7jra";
  };

  buildInputs = [ncurses];
  configureFlags = [ "--sysconfdir=/etc" ];

  /* doConfigure should be specified separately */
  phaseNames = [ "doConfigure" "doMakeInstall"];
      
  name = "minicom-" + version;
  meta = {
    description = "Serial console";
  };
}