dyncall: https, use upstream-provided SHA256

This commit is contained in:
Will Dietz 2020-01-15 06:45:44 -06:00
parent b37b32e98a
commit 6b11639a2d
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02

View File

@ -5,9 +5,9 @@ stdenv.mkDerivation {
version = "1.1"; version = "1.1";
src = fetchurl { src = fetchurl {
url = http://www.dyncall.org/r1.1/dyncall-1.1.tar.gz; url = https://www.dyncall.org/r1.1/dyncall-1.1.tar.gz;
# http://www.dyncall.org/r1.1/SHA256 # https://www.dyncall.org/r1.1/SHA256
sha256 = "15c7x0k921lm5mml8gap2rkz3md7d56slp136kzk5f1d2hzzm5yg"; sha256 = "cf97fa3f142db832ff34235caa4d69a7d5f16716573d446b2d95069126e88795";
}; };
# XXX: broken tests, failures masked, lets avoid crashing a bunch for now :) # XXX: broken tests, failures masked, lets avoid crashing a bunch for now :)
@ -29,7 +29,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Highly dynamic multi-platform foreign function call interface library"; description = "Highly dynamic multi-platform foreign function call interface library";
homepage = http://www.dyncall.org; homepage = https://www.dyncall.org;
license = licenses.isc; license = licenses.isc;
maintainers = with maintainers; [ dtzWill ]; maintainers = with maintainers; [ dtzWill ];
}; };