pantheon.elementary-terminal: 6.0.1 -> 6.0.2

main
Bobby Rong 2 years ago
parent 5449a86548
commit 5d6c1f37d4
No known key found for this signature in database
GPG Key ID: ED07364437C91161
  1. 18
      pkgs/desktops/pantheon/apps/elementary-terminal/default.nix

@ -1,7 +1,6 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, nix-update-script , nix-update-script
, pkg-config , pkg-config
, meson , meson
@ -10,41 +9,28 @@
, vala , vala
, desktop-file-utils , desktop-file-utils
, gtk3 , gtk3
, libxml2
, granite , granite
, libhandy , libhandy
, libnotify , libnotify
, vte , vte
, libgee , libgee
, appstream
, pcre2 , pcre2
, wrapGAppsHook , wrapGAppsHook
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "elementary-terminal"; pname = "elementary-terminal";
version = "6.0.1"; version = "6.0.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "elementary"; owner = "elementary";
repo = "terminal"; repo = "terminal";
rev = version; rev = version;
sha256 = "sha256-4q7YQ4LxuiM/TRae1cc3ncmw7QwE1soC2Sh+GZ+Gpq0="; sha256 = "sha256-glcY47E9bGVI6k9gakItN6srzMtmA4hCEz/JVD5UUmI=";
}; };
patches = [
# Fix build with meson 0.61
# https://github.com/elementary/terminal/pull/649
(fetchpatch {
url = "https://github.com/elementary/terminal/commit/15e3ace08cb25e53941249fa1ee680a1e2f871b4.patch";
sha256 = "sha256-XVs+kq5qbX5KlxtkqxwJnatNYNeJiVLBec7sLjQsUxg=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
appstream
desktop-file-utils desktop-file-utils
libxml2
meson meson
ninja ninja
pkg-config pkg-config

Loading…
Cancel
Save