summary refs log blame commit diff
path: root/pkgs/applications/terminal-emulators/kermit-terminal/default.nix
blob: 8a5a78564149ba9d61374585ebf4098d9b875269 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                 








                         
                  





                                     
                                                                 

    


















                                                                     
{ lib
, stdenv
, fetchFromGitHub
, cmake
, gtk3
, pcre
, pkg-config
, vte
}:

stdenv.mkDerivation rec {
  pname = "kermit";
  version = "3.7";

  src = fetchFromGitHub {
    name = "${pname}-${version}-src";
    owner = "orhun";
    repo = pname;
    rev = version;
    hash = "sha256-O5jpiQ+aaOTPst4/Z+H5e7ylA8CNBevqNoH50p4uEA4=";
  };

  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  buildInputs = [
    gtk3
    pcre
    vte
  ];

  meta = with lib; {
    homepage = "https://github.com/orhun/kermit";
    description = "A VTE-based, simple and froggy terminal emulator";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = with platforms; unix;
  };
}