summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2022-03-15 11:27:46 +0100
committerFelix Buehler <account@buehler.rocks>2022-03-16 23:23:09 +0100
commitbf316c83076005b15bf6c1b5ce7e161dc05eb430 (patch)
tree4a413c505f61f0d0f9035a1fcd2792bb60b73c44
parentafb9c15341303b7d28d9326b90bddff6c1182643 (diff)
downloadnixpkgs-bf316c83076005b15bf6c1b5ce7e161dc05eb430.tar
nixpkgs-bf316c83076005b15bf6c1b5ce7e161dc05eb430.tar.gz
nixpkgs-bf316c83076005b15bf6c1b5ce7e161dc05eb430.tar.bz2
nixpkgs-bf316c83076005b15bf6c1b5ce7e161dc05eb430.tar.lz
nixpkgs-bf316c83076005b15bf6c1b5ce7e161dc05eb430.tar.xz
nixpkgs-bf316c83076005b15bf6c1b5ce7e161dc05eb430.tar.zst
nixpkgs-bf316c83076005b15bf6c1b5ce7e161dc05eb430.zip
tensor: switch to fetchFromGitHub
-rw-r--r--pkgs/applications/networking/instant-messengers/tensor/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/networking/instant-messengers/tensor/default.nix b/pkgs/applications/networking/instant-messengers/tensor/default.nix
index 2d5f6e2dfb7..cbc93857c81 100644
--- a/pkgs/applications/networking/instant-messengers/tensor/default.nix
+++ b/pkgs/applications/networking/instant-messengers/tensor/default.nix
@@ -1,7 +1,7 @@
 { mkDerivation
 , lib
 , stdenv
-, fetchgit
+, fetchFromGitHub
 , qtbase
 , qtquickcontrols
 , qmake
@@ -15,10 +15,11 @@ mkDerivation rec {
   pname = "tensor";
   version = "unstable-2017-02-21";
 
-  src = fetchgit {
-    url = "https://github.com/davidar/tensor.git";
+  src = fetchFromGitHub {
+    owner = "davidar";
+    repo = "tensor";
     rev = "f3f3056d770d7fb4a21c610cee7936ee900569f5";
-    sha256 = "19in8c7a2hxsx2c4lj540w5c3pn1882645m21l91mcriynqr67k9";
+    sha256 = "sha256-aR6TsfUxsxoSDaIWYgRCwd7BCgekSEqY6LpDoQ5DNqY=";
     fetchSubmodules = true;
   };