42 lines
718 B
Nix
42 lines
718 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|