kermit-terminal: 3.7 -> 3.8

Many thanks to r-ryantm bot!
This commit is contained in:
AndersonTorres 2022-12-04 17:59:54 -03:00
parent 3fd221a486
commit f5a56c71a0

View file

@ -9,16 +9,15 @@
, nixosTests
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "kermit";
version = "3.7";
version = "3.8";
src = fetchFromGitHub {
name = "${pname}-${version}-src";
owner = "orhun";
repo = pname;
rev = version;
hash = "sha256-O5jpiQ+aaOTPst4/Z+H5e7ylA8CNBevqNoH50p4uEA4=";
repo = finalAttrs.pname;
rev = finalAttrs.version;
hash = "sha256-XPHF33Nu+H8OcQFwsuUOhDBDWKm8sh5B36sfROeSWPg=";
};
nativeBuildInputs = [
@ -37,8 +36,9 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/orhun/kermit";
description = "A VTE-based, simple and froggy terminal emulator";
changelog = "https://github.com/orhun/kermit/releases/tag/${finalAttrs.version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
};
}
})