forked from mirrors/nixpkgs
tinc_pre: use https source for fetching
This commit is contained in:
parent
c878d5c5b3
commit
74743e2307
|
@ -1,13 +1,14 @@
|
||||||
{ lib, stdenv, fetchgit, fetchpatch, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "tinc";
|
pname = "tinc";
|
||||||
version = "1.1pre18";
|
version = "1.1pre18";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
|
owner = "gsliepen";
|
||||||
|
repo = "tinc";
|
||||||
rev = "release-${version}";
|
rev = "release-${version}";
|
||||||
url = "git://tinc-vpn.org/tinc";
|
hash = "sha256-1anjTUlVLx57FlUqGwBd590lfkZ2MmrM1qRcMl4P7Sg=";
|
||||||
sha256 = "0a7d1xg34p54sv66lckn8rz2bpg7bl01najm2rxiwbsm956y7afm";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "man" "info" ];
|
outputs = [ "out" "man" "info" ];
|
||||||
|
|
Loading…
Reference in a new issue