summary refs log tree commit diff
path: root/pkgs/applications/editors/scite
diff options
context:
space:
mode:
authorJ. Neto <jnetod@tuta.io>2021-05-14 02:35:43 -0300
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-16 22:01:16 -0700
commit18b051fde589b77fabff5cbb984aa3a5769bf357 (patch)
tree858bf3ba27d11969af4bbd13d7532fced167393a /pkgs/applications/editors/scite
parent66201e2c1de3b385f79286c956a15f5b6d227126 (diff)
downloadnixpkgs-18b051fde589b77fabff5cbb984aa3a5769bf357.tar
nixpkgs-18b051fde589b77fabff5cbb984aa3a5769bf357.tar.gz
nixpkgs-18b051fde589b77fabff5cbb984aa3a5769bf357.tar.bz2
nixpkgs-18b051fde589b77fabff5cbb984aa3a5769bf357.tar.lz
nixpkgs-18b051fde589b77fabff5cbb984aa3a5769bf357.tar.xz
nixpkgs-18b051fde589b77fabff5cbb984aa3a5769bf357.tar.zst
nixpkgs-18b051fde589b77fabff5cbb984aa3a5769bf357.zip
scite: 4.0.5 -> 5.0.2
Diffstat (limited to 'pkgs/applications/editors/scite')
-rw-r--r--pkgs/applications/editors/scite/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/applications/editors/scite/default.nix b/pkgs/applications/editors/scite/default.nix
index 3d6ec9ece9c..ab0fef9be26 100644
--- a/pkgs/applications/editors/scite/default.nix
+++ b/pkgs/applications/editors/scite/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation {
   pname = "scite";
-  version = "4.0.5";
+  version = "5.0.2";
 
   src = fetchurl {
-    url = "https://www.scintilla.org/scite405.tgz";
-    sha256 = "0h16wk2986nkkhhdv5g4lxlcn02qwyja24x1r6vf02r1hf46b9q2";
+    url = "https://www.scintilla.org/scite502.tgz";
+    sha256 = "00n2gr915f7kvp2250dzn6n0p6lhr6qdlm1m7y2xi6qrrky0bpan";
   };
 
   nativeBuildInputs = [ pkg-config ];
@@ -15,6 +15,8 @@ stdenv.mkDerivation {
 
   buildPhase = ''
     make
+    cd ../../lexilla/src
+    make
     cd ../../scite/gtk
     make prefix=$out/
   '';