about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rfc-bibtex
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-11-16 09:51:54 +0100
committerGitHub <noreply@github.com>2019-11-16 09:51:54 +0100
commit1459e57db156d8c39ba0a0e6bff3d6835dffcc48 (patch)
tree3b10e08d0d219a2713bb2d711f9fc545fe33f182 /pkgs/development/python-modules/rfc-bibtex
parent44d9a86f41fc03fa37338f49778624d3122a757d (diff)
rfc-bibtex: fix homepage url
Incorrect schema: "ttps://" -> "https://"
Diffstat (limited to 'pkgs/development/python-modules/rfc-bibtex')
-rw-r--r--pkgs/development/python-modules/rfc-bibtex/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/rfc-bibtex/default.nix b/pkgs/development/python-modules/rfc-bibtex/default.nix
index db6fedd89a457..dd114fd70960b 100644
--- a/pkgs/development/python-modules/rfc-bibtex/default.nix
+++ b/pkgs/development/python-modules/rfc-bibtex/default.nix
@@ -12,7 +12,7 @@ buildPythonApplication rec {
   disabled = !isPy3k;
 
   meta = with stdenv.lib; {
-    homepage = ttps://github.com/iluxonchik/rfc-bibtex/;
+    homepage = https://github.com/iluxonchik/rfc-bibtex/;
     description = "Generate Bibtex entries for IETF RFCs and Internet-Drafts";
     license = licenses.mit;
     maintainers = with maintainers; [ teto ];