about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorajs124 <ajs124@users.noreply.github.com>2024-03-04 21:33:28 +0100
committerGitHub <noreply@github.com>2024-03-04 21:33:28 +0100
commit2e3de83b60e12320be547da74b0759f853ed5d08 (patch)
treecf1b2e6f36984526a8414c12bad7023d882eea37 /pkgs/applications/editors
parent675b57f3108b8875a14c3828f9bb6234cbd5869c (diff)
parentf76d416eef2ea6ef7f8faddf7b83490019ca3d37 (diff)
downloadnixlib-2e3de83b60e12320be547da74b0759f853ed5d08.tar
nixlib-2e3de83b60e12320be547da74b0759f853ed5d08.tar.gz
nixlib-2e3de83b60e12320be547da74b0759f853ed5d08.tar.bz2
nixlib-2e3de83b60e12320be547da74b0759f853ed5d08.tar.lz
nixlib-2e3de83b60e12320be547da74b0759f853ed5d08.tar.xz
nixlib-2e3de83b60e12320be547da74b0759f853ed5d08.tar.zst
nixlib-2e3de83b60e12320be547da74b0759f853ed5d08.zip
Merge pull request #292673 from r-ryantm/auto-update/texstudio
texstudio: 4.7.2 -> 4.7.3
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/texstudio/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix
index 4c514f3396dc..d084dd7c3f4c 100644
--- a/pkgs/applications/editors/texstudio/default.nix
+++ b/pkgs/applications/editors/texstudio/default.nix
@@ -5,13 +5,13 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "texstudio";
-  version = "4.7.2";
+  version = "4.7.3";
 
   src = fetchFromGitHub {
     owner = "texstudio-org";
     repo = "texstudio";
     rev = finalAttrs.version;
-    hash = "sha256-Q4/aoLIxFssti3Dto1JwRRAQ+D3DHlH9JgDrHBVKg4M=";
+    hash = "sha256-hAuNjlFr23l5ztfoa2RTHKZtH2aXF1EuWTd/ZyKuyHg=";
   };
 
   nativeBuildInputs = [
@@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: {
       spell checking and support of any compilation chain.
     '';
     homepage = "https://texstudio.org";
-    changelog = "https://github.com/texstudio-org/texstudio/blob/${version}/utilities/manual/CHANGELOG.txt";
+    changelog = "https://github.com/texstudio-org/texstudio/blob/${finalAttrs.version}/utilities/manual/CHANGELOG.txt";
     license = licenses.gpl2Plus;
     platforms = platforms.unix;
     maintainers = with maintainers; [ ajs124 cfouche ];