picocom: adding picocom, 1.7
This commit is contained in:
parent
63b87a116e
commit
ad0b63265c
23
pkgs/tools/misc/picocom/default.nix
Normal file
23
pkgs/tools/misc/picocom/default.nix
Normal 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
|
||||||
|
};
|
||||||
|
}
|
@ -7491,6 +7491,8 @@ let
|
|||||||
|
|
||||||
picard = callPackage ../applications/audio/picard { };
|
picard = callPackage ../applications/audio/picard { };
|
||||||
|
|
||||||
|
picocom = callPackage ../tools/misc/picocom { };
|
||||||
|
|
||||||
pidgin = callPackage ../applications/networking/instant-messengers/pidgin {
|
pidgin = callPackage ../applications/networking/instant-messengers/pidgin {
|
||||||
openssl = if (config.pidgin.openssl or true) then openssl else null;
|
openssl = if (config.pidgin.openssl or true) then openssl else null;
|
||||||
gnutls = if (config.pidgin.gnutls or false) then gnutls else null;
|
gnutls = if (config.pidgin.gnutls or false) then gnutls else null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user