summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-08-02 21:03:43 +0800
committerBobby Rong <rjl931189261@126.com>2023-08-02 21:05:27 +0800
commit2dd5cccb1112d78dca1bbe5d2ebf5cb41ed669e4 (patch)
tree903e0eabea816c78d4316ed079eabf03a074f611
parentd309780fe83a2b8a19628f6f70941193e8c47314 (diff)
downloadnixpkgs-2dd5cccb1112d78dca1bbe5d2ebf5cb41ed669e4.tar
nixpkgs-2dd5cccb1112d78dca1bbe5d2ebf5cb41ed669e4.tar.gz
nixpkgs-2dd5cccb1112d78dca1bbe5d2ebf5cb41ed669e4.tar.bz2
nixpkgs-2dd5cccb1112d78dca1bbe5d2ebf5cb41ed669e4.tar.lz
nixpkgs-2dd5cccb1112d78dca1bbe5d2ebf5cb41ed669e4.tar.xz
nixpkgs-2dd5cccb1112d78dca1bbe5d2ebf5cb41ed669e4.tar.zst
nixpkgs-2dd5cccb1112d78dca1bbe5d2ebf5cb41ed669e4.zip
pantheon.elementary-code: 7.0.0 -> 7.1.0
https://github.com/elementary/code/releases/tag/7.1.0
-rw-r--r--pkgs/desktops/pantheon/apps/elementary-code/default.nix21
1 files changed, 2 insertions, 19 deletions
diff --git a/pkgs/desktops/pantheon/apps/elementary-code/default.nix b/pkgs/desktops/pantheon/apps/elementary-code/default.nix
index 388feb83cfe..5a3233028ce 100644
--- a/pkgs/desktops/pantheon/apps/elementary-code/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-code/default.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, fetchpatch
 , nix-update-script
 , appstream
 , desktop-file-utils
@@ -9,7 +8,6 @@
 , ninja
 , pkg-config
 , polkit
-, python3
 , vala
 , wrapGAppsHook
 , editorconfig-core-c
@@ -28,24 +26,15 @@
 
 stdenv.mkDerivation rec {
   pname = "elementary-code";
-  version = "7.0.0";
+  version = "7.1.0";
 
   src = fetchFromGitHub {
     owner = "elementary";
     repo = "code";
     rev = version;
-    sha256 = "sha256-6ZOdlOCIDy5aWQre15+SrTH/vhY9OeTffY/uTSroELc=";
+    sha256 = "sha256-Dtm0+NqDwfn5HUQEYtHTiyrpM3mHp1wUFOGaxH86YUo=";
   };
 
-  patches = [
-    # Fix global search action disabled at startup
-    # https://github.com/elementary/code/pull/1254
-    (fetchpatch {
-      url = "https://github.com/elementary/code/commit/1e75388b07c060cc10ecd612076f235b1833fab8.patch";
-      sha256 = "sha256-8Djh1orMcmICdYwQFENJCaYlXK0E52NhCmuhlHCz7oM=";
-    })
-  ];
-
   nativeBuildInputs = [
     appstream
     desktop-file-utils
@@ -53,7 +42,6 @@ stdenv.mkDerivation rec {
     ninja
     pkg-config
     polkit # needed for ITS rules
-    python3
     vala
     wrapGAppsHook
   ];
@@ -79,11 +67,6 @@ stdenv.mkDerivation rec {
     )
   '';
 
-  postPatch = ''
-    chmod +x meson/post_install.py
-    patchShebangs meson/post_install.py
-  '';
-
   passthru = {
     updateScript = nix-update-script { };
   };