summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-08-22 11:44:03 +0800
committerBobby Rong <rjl931189261@126.com>2023-08-22 11:48:21 +0800
commit92cbf5e6a08bdeb743828357294e22f02203c52b (patch)
tree6ec8214578f42771c9bcced73cdda293dd05d525
parent1d942ec8eac20c01826c065dd503b8103005d286 (diff)
downloadnixpkgs-92cbf5e6a08bdeb743828357294e22f02203c52b.tar
nixpkgs-92cbf5e6a08bdeb743828357294e22f02203c52b.tar.gz
nixpkgs-92cbf5e6a08bdeb743828357294e22f02203c52b.tar.bz2
nixpkgs-92cbf5e6a08bdeb743828357294e22f02203c52b.tar.lz
nixpkgs-92cbf5e6a08bdeb743828357294e22f02203c52b.tar.xz
nixpkgs-92cbf5e6a08bdeb743828357294e22f02203c52b.tar.zst
nixpkgs-92cbf5e6a08bdeb743828357294e22f02203c52b.zip
pantheon.elementary-feedback: 7.0.0 -> 7.1.0
https://github.com/elementary/feedback/releases/tag/7.1.0
-rw-r--r--pkgs/desktops/pantheon/apps/elementary-feedback/default.nix27
1 files changed, 10 insertions, 17 deletions
diff --git a/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix b/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix
index d24778ffe57..d1ccd49f1a8 100644
--- a/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix
@@ -6,25 +6,24 @@
 , meson
 , ninja
 , vala
-, python3
-, gtk3
+, gtk4
 , glib
-, granite
+, granite7
+, libadwaita
 , libgee
-, libhandy
-, wrapGAppsHook
+, wrapGAppsHook4
 , appstream
 }:
 
 stdenv.mkDerivation rec {
   pname = "elementary-feedback";
-  version = "7.0.0";
+  version = "7.1.0";
 
   src = fetchFromGitHub {
     owner = "elementary";
     repo = "feedback";
     rev = version;
-    sha256 = "sha256-QvqyaI9szZuYuE3D6o4zjr5J6mvEzNHqTBWii+gjyMc=";
+    sha256 = "sha256-hAObgD2Njg1We0rGEu508khoBo+hj0DQAB7N33CVDiM=";
   };
 
   patches = [
@@ -39,25 +38,19 @@ stdenv.mkDerivation rec {
     meson
     ninja
     pkg-config
-    python3
     vala
-    wrapGAppsHook
+    wrapGAppsHook4
   ];
 
   buildInputs = [
     appstream
-    granite
-    gtk3
+    granite7
+    gtk4
+    libadwaita
     libgee
-    libhandy
     glib
   ];
 
-  postPatch = ''
-    chmod +x meson/post_install.py
-    patchShebangs meson/post_install.py
-  '';
-
   passthru = {
     updateScript = nix-update-script { };
   };