Added minicom
svn path=/nixpkgs/trunk/; revision=11560
This commit is contained in:
parent
938e11754e
commit
87ce868112
1 changed files with 18 additions and 0 deletions
18
pkgs/tools/misc/minicom/2.3.nix
Normal file
18
pkgs/tools/misc/minicom/2.3.nix
Normal file
|
@ -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…
Reference in a new issue