summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-25 00:03:52 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-25 00:05:00 +0200
commit9951b235a76800a572ea30793126b7dd8cdf3f0d (patch)
tree01c7bac0153c52d2b2055786173dda4936749a43
parent63fbfda29a0f1f1185f845ddea70fc81ae4a348c (diff)
downloadNUR-master.tar.gz
NUR-master.tar.zst
NUR-master.zip
Use fetchgit rather than builtinsHEADmaster
-rw-r--r--pkgs/telethon_sync/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/telethon_sync/default.nix b/pkgs/telethon_sync/default.nix
index 5cbff95c..a03e1c39 100644
--- a/pkgs/telethon_sync/default.nix
+++ b/pkgs/telethon_sync/default.nix
@@ -1,13 +1,14 @@
1{ lib, python3Packages }: 1{ lib, python3Packages, fetchgit }:
2with python3Packages; 2with python3Packages;
3buildPythonPackage rec { 3buildPythonPackage rec {
4 pname = "Telethon-sync"; 4 pname = "Telethon-sync";
5 version = "1.1.1"; 5 version = "1.1.1";
6 6
7 src = builtins.fetchGit { 7 src = fetchgit {
8 url = "https://github.com/LonamiWebs/Telethon"; 8 url = "https://github.com/LonamiWebs/Telethon";
9 ref = "sync-stale"; 9 branchName = "sync-stale";
10 rev = "6a785a01aa56cfd21c8c5beb9d722c68d664ba5e"; 10 rev = "6a785a01aa56cfd21c8c5beb9d722c68d664ba5e";
11 sha256 = "0g7gnln5kbh1gy6sfb3jg6knmi33n6sgzy2rni2x6af84lza0lgc";
11 }; 12 };
12 13
13 propagatedBuildInputs = [ 14 propagatedBuildInputs = [