about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-04-11 09:26:56 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-04-11 09:26:56 +0000
commit87ce8681129b7602ee2b06bfe81e4d1a03e84744 (patch)
tree44301813081263e8ababf36bb80b8e7a790e29d0 /pkgs/tools
parent938e11754e701bbd03dc77315481ca304808ce93 (diff)
downloadnixlib-87ce8681129b7602ee2b06bfe81e4d1a03e84744.tar
nixlib-87ce8681129b7602ee2b06bfe81e4d1a03e84744.tar.gz
nixlib-87ce8681129b7602ee2b06bfe81e4d1a03e84744.tar.bz2
nixlib-87ce8681129b7602ee2b06bfe81e4d1a03e84744.tar.lz
nixlib-87ce8681129b7602ee2b06bfe81e4d1a03e84744.tar.xz
nixlib-87ce8681129b7602ee2b06bfe81e4d1a03e84744.tar.zst
nixlib-87ce8681129b7602ee2b06bfe81e4d1a03e84744.zip
Added minicom
svn path=/nixpkgs/trunk/; revision=11560
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/minicom/2.3.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/misc/minicom/2.3.nix b/pkgs/tools/misc/minicom/2.3.nix
new file mode 100644
index 000000000000..1b9b0e624706
--- /dev/null
+++ b/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";
+  };
+}