nixpkgs/pkgs/tools/misc/ipbt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
616 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, perl, ncurses }:
2020-03-09 15:46:33 -04:00
stdenv.mkDerivation rec {
version = "20210215.5a9cb02";
2020-03-09 15:46:33 -04:00
pname = "ipbt";
src = fetchurl {
url = "https://www.chiark.greenend.org.uk/~sgtatham/ipbt/ipbt-${version}.tar.gz";
sha256 = "0w6blpv22jjivzr58y440zv6djvi5iccdmj4y2md52fbpjngmsha";
2020-03-09 15:46:33 -04:00
};
nativeBuildInputs = [ perl ];
buildInputs = [ ncurses ];
meta = with lib; {
2020-03-09 15:46:33 -04:00
description = "A high-tech ttyrec player for Unix";
homepage = "https://www.chiark.greenend.org.uk/~sgtatham/ipbt/";
license = licenses.mit;
maintainers = [ maintainers.tckmn ];
platforms = platforms.unix;
};
}