summary refs log tree commit diff
path: root/pkgs/applications/editors/texstudio
diff options
context:
space:
mode:
authorajs124 <ajs124@users.noreply.github.com>2018-04-10 20:19:52 +0200
committerRobert Schütz <rschuetz17@gmail.com>2018-04-10 20:19:52 +0200
commit7d2e232208eee12f32936f4ef827d16fc44f1fba (patch)
tree1f9ce1e8cc9d557fef5896da8e63b6ac3fb0c42d /pkgs/applications/editors/texstudio
parentd0945011ae27ff6d250a23418337439009343306 (diff)
downloadnixpkgs-7d2e232208eee12f32936f4ef827d16fc44f1fba.tar
nixpkgs-7d2e232208eee12f32936f4ef827d16fc44f1fba.tar.gz
nixpkgs-7d2e232208eee12f32936f4ef827d16fc44f1fba.tar.bz2
nixpkgs-7d2e232208eee12f32936f4ef827d16fc44f1fba.tar.lz
nixpkgs-7d2e232208eee12f32936f4ef827d16fc44f1fba.tar.xz
nixpkgs-7d2e232208eee12f32936f4ef827d16fc44f1fba.tar.zst
nixpkgs-7d2e232208eee12f32936f4ef827d16fc44f1fba.zip
texstudio: 2.12.6 -> 2.12.8 (#38663)
move to github
Diffstat (limited to 'pkgs/applications/editors/texstudio')
-rw-r--r--pkgs/applications/editors/texstudio/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix
index 03505ec11a5..938f3817479 100644
--- a/pkgs/applications/editors/texstudio/default.nix
+++ b/pkgs/applications/editors/texstudio/default.nix
@@ -1,14 +1,15 @@
-{ stdenv, fetchurl, qt5, poppler_qt5, zlib, pkgconfig}:
+{ stdenv, fetchFromGitHub, qt5, poppler_qt5, zlib, pkgconfig}:
 
 stdenv.mkDerivation rec {
   pname = "texstudio";
-  version = "2.12.6";
+  version = "2.12.8";
   name = "${pname}-${version}";
-  altname="Texstudio";
 
-  src = fetchurl {
-    url = "mirror://sourceforge/texstudio/${name}.tar.gz";
-    sha256 = "18rxd7ra5k2f7s4c296b3v3pqhxjmfix9xpy9i1g4jm87ygqrbnd";
+  src = fetchFromGitHub {
+    owner = "${pname}-org";
+    repo = pname;
+    rev = version;
+    sha256 = "0f1az7398rnxmm3m9b2jcz7pd9x445fjsv8w85k2j261n5cyfqx2";
   };
 
   nativeBuildInputs = [ qt5.qmake pkgconfig ];