picocom: adding picocom, 1.7

This commit is contained in:
Lluís Batlle i Rossell 2012-09-24 00:26:46 +02:00
parent 63b87a116e
commit ad0b63265c
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "picocom-1.7";
src = fetchurl {
url = "http://picocom.googlecode.com/files/${name}.tar.gz";
sha256 = "17hjq713naq02xar711aw24qqd52p591mj1h5n97cni1ga7irwyh";
};
installPhase = ''
ensureDir $out/bin $out/share/man/man8
cp picocom $out/bin
cp picocom.8 $out/share/man/man8
'';
meta = {
description = "Minimal dumb-terminal emulation program";
homepage = http://code.google.com/p/picocom/;
license = "GPLv2+";
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}

View file

@ -7491,6 +7491,8 @@ let
picard = callPackage ../applications/audio/picard { };
picocom = callPackage ../tools/misc/picocom { };
pidgin = callPackage ../applications/networking/instant-messengers/pidgin {
openssl = if (config.pidgin.openssl or true) then openssl else null;
gnutls = if (config.pidgin.gnutls or false) then gnutls else null;