Added minicom

svn path=/nixpkgs/trunk/; revision=11560
wip/yesman
Michael Raskin 16 years ago
parent 938e11754e
commit 87ce868112
  1. 18
      pkgs/tools/misc/minicom/2.3.nix

@ -0,0 +1,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 = [];
/* doConfigure should be specified separately */
phaseNames = [ "doConfigure" "doMakeInstall"];
name = "minicom-" + version;
meta = {
description = "Serial console";
};
}
Loading…
Cancel
Save