about summary refs log tree commit diff
path: root/pkgs/tools/misc/picocom/default.nix
blob: 126725eaafcb1dcea7eec8f8e0357ee4724f511c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "picocom-1.7";

  src = fetchurl {
    url = "http://picocom.googlecode.com/files/${name}.tar.gz";
    sha256 = "17hjq713naq02xar711aw24qqd52p591mj1h5n97cni1ga7irwyh";
  };

  installPhase = ''
    mkdir -p $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
  };
}