Treewide: use https for repo.or.cz

This commit is contained in:
c0bw3b 2018-11-24 19:21:12 +01:00
parent 56cad36f75
commit 88ce525e85
6 changed files with 11 additions and 11 deletions

View file

@ -9,12 +9,12 @@ in stdenv.mkDerivation rec {
version = "8"; version = "8";
src = fetchurl { src = fetchurl {
url = "http://repo.or.cz/a2jmidid.git/snapshot/7383d268c4bfe85df9f10df6351677659211d1ca.tar.gz"; url = "https://repo.or.cz/a2jmidid.git/snapshot/7383d268c4bfe85df9f10df6351677659211d1ca.tar.gz";
sha256 = "06dgf5655znbvrd7fhrv8msv6zw8vk0hjqglcqkh90960mnnmwz7"; sha256 = "06dgf5655znbvrd7fhrv8msv6zw8vk0hjqglcqkh90960mnnmwz7";
}; };
nativeBuildInputs = [ pkgconfig wafHook ]; nativeBuildInputs = [ pkgconfig makeWrapper wafHook ];
buildInputs = [ makeWrapper alsaLib dbus libjack2 python dbus-python ]; buildInputs = [ alsaLib dbus libjack2 python dbus-python ];
postInstall = '' postInstall = ''
wrapProgram $out/bin/a2j_control --set PYTHONPATH $PYTHONPATH wrapProgram $out/bin/a2j_control --set PYTHONPATH $PYTHONPATH

View file

@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://repo.or.cz/w/llpp.git; homepage = https://repo.or.cz/w/llpp.git;
description = "A MuPDF based PDF pager written in OCaml"; description = "A MuPDF based PDF pager written in OCaml";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ pSub ]; maintainers = with maintainers; [ pSub ];

View file

@ -33,7 +33,7 @@ stdenv.mkDerivation {
meta = { meta = {
description = "Import svn, mercurial into git"; description = "Import svn, mercurial into git";
homepage = http://repo.or.cz/w/fast-export.git; homepage = https://repo.or.cz/w/fast-export.git;
license = licenses.gpl2; license = licenses.gpl2;
maintainers = [ maintainers.koral ]; maintainers = [ maintainers.koral ];
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;

View file

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
patches = let patches = let
fp = name: sha256: fp = name: sha256:
fetchpatch { fetchpatch {
url = "http://sources.debian.net/data/main/libt/libtar/1.2.20-4/debian/patches/${name}.patch"; url = "https://sources.debian.net/data/main/libt/libtar/1.2.20-4/debian/patches/${name}.patch";
inherit sha256; inherit sha256;
}; };
in [ in [
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "C library for manipulating POSIX tar files"; description = "C library for manipulating POSIX tar files";
homepage = http://repo.or.cz/libtar; homepage = https://repo.or.cz/libtar;
license = licenses.bsd3; license = licenses.bsd3;
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -1,7 +1,7 @@
From: Thomas Perl <m@thp.io> From: Thomas Perl <m@thp.io>
Description: Fix FTBFS Description: Fix FTBFS
Origin: upstream, http://repo.or.cz/w/tennix.git/commitdiff/6144cb7626dfdc0820a0036af83a531e8e68bae6 Origin: upstream, https://repo.or.cz/w/tennix.git/commitdiff/6144cb7626dfdc0820a0036af83a531e8e68bae6
Bug-Debian: http://bugs.debian.org/664907 Bug-Debian: https://bugs.debian.org/664907
--- tennix-1.1.orig/archivetool.cc --- tennix-1.1.orig/archivetool.cc
+++ tennix-1.1/archivetool.cc +++ tennix-1.1/archivetool.cc

View file

@ -314,8 +314,8 @@ with pkgs;
... # For hash agility ... # For hash agility
}@args: fetchzip ({ }@args: fetchzip ({
inherit name; inherit name;
url = "http://repo.or.cz/${repo}.git/snapshot/${rev}.tar.gz"; url = "https://repo.or.cz/${repo}.git/snapshot/${rev}.tar.gz";
meta.homepage = "http://repo.or.cz/${repo}.git/"; meta.homepage = "https://repo.or.cz/${repo}.git/";
} // removeAttrs args [ "repo" "rev" ]) // { inherit rev; }; } // removeAttrs args [ "repo" "rev" ]) // { inherit rev; };
fetchNuGet = callPackage ../build-support/fetchnuget { }; fetchNuGet = callPackage ../build-support/fetchnuget { };