Merge pull request #158312 from AndersonTorres/new-vte

kermit: 3.5 -> 3.7
This commit is contained in:
Anderson Torres 2022-02-06 01:01:04 -03:00 committed by GitHub
commit fc84a35ac0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, gtk3
, pcre
@ -11,24 +10,16 @@
stdenv.mkDerivation rec {
pname = "kermit";
version = "3.5";
version = "3.7";
src = fetchFromGitHub {
name = "${pname}-${version}-src";
owner = "orhun";
repo = pname;
rev = version;
hash = "sha256-bdy2iPUV3flZrf4otuw40Xn1t/82H7ayjr7yzHLPo74=";
hash = "sha256-O5jpiQ+aaOTPst4/Z+H5e7ylA8CNBevqNoH50p4uEA4=";
};
patches = [
# Manpage installation. Remove it when next release arrives
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/orhun/kermit/pull/21.patch";
hash = "sha256-mcsKQNEPgJOWFmOxKii2en2CwpUbT6tO2/YAlRSUL2A=";
})
];
nativeBuildInputs = [
cmake
pkg-config