ttylog: Add derivation
This commit is contained in:
parent
e47fe46e03
commit
3913d03890
2 changed files with 22 additions and 0 deletions
20
pkgs/tools/misc/ttylog/default.nix
Normal file
20
pkgs/tools/misc/ttylog/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ttylog-0.25";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/ttylog/${name}.tar.gz";
|
||||
sha256 = "0546mj5gcxi7idvfw82p8qw27lk7wsk6j4b6zw7nb6z2wi517l40";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://ttylog.sourceforg.net";
|
||||
description = "a serial port logger which can be used to print everything to stdout that comes from a serial device";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
|
@ -2989,6 +2989,8 @@ let
|
|||
|
||||
ttysnoop = callPackage ../os-specific/linux/ttysnoop {};
|
||||
|
||||
ttylog = callPackage ../tools/misc/ttylog { };
|
||||
|
||||
twitterBootstrap = callPackage ../development/web/twitter-bootstrap {};
|
||||
|
||||
txt2man = callPackage ../tools/misc/txt2man { };
|
||||
|
|
Loading…
Reference in a new issue