summary refs log tree commit diff
path: root/pkgs/development/libraries/dyncall/default.nix
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2020-01-15 06:45:44 -0600
committerWill Dietz <w@wdtz.org>2020-01-15 06:45:44 -0600
commit6b11639a2de18b73ef3f79b7636348f6ce47f378 (patch)
tree3280430a25377f9238c0cc064f660a123ae8b6f7 /pkgs/development/libraries/dyncall/default.nix
parentb37b32e98af487b2c22895ab0ba0da005cbcf1c9 (diff)
downloadnixpkgs-6b11639a2de18b73ef3f79b7636348f6ce47f378.tar
nixpkgs-6b11639a2de18b73ef3f79b7636348f6ce47f378.tar.gz
nixpkgs-6b11639a2de18b73ef3f79b7636348f6ce47f378.tar.bz2
nixpkgs-6b11639a2de18b73ef3f79b7636348f6ce47f378.tar.lz
nixpkgs-6b11639a2de18b73ef3f79b7636348f6ce47f378.tar.xz
nixpkgs-6b11639a2de18b73ef3f79b7636348f6ce47f378.tar.zst
nixpkgs-6b11639a2de18b73ef3f79b7636348f6ce47f378.zip
dyncall: https, use upstream-provided SHA256
Diffstat (limited to 'pkgs/development/libraries/dyncall/default.nix')
-rw-r--r--pkgs/development/libraries/dyncall/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/dyncall/default.nix b/pkgs/development/libraries/dyncall/default.nix
index 05fa582fb62..83c754e2928 100644
--- a/pkgs/development/libraries/dyncall/default.nix
+++ b/pkgs/development/libraries/dyncall/default.nix
@@ -5,9 +5,9 @@ stdenv.mkDerivation {
   version = "1.1";
 
   src = fetchurl {
-    url = http://www.dyncall.org/r1.1/dyncall-1.1.tar.gz;
-    # http://www.dyncall.org/r1.1/SHA256
-    sha256 = "15c7x0k921lm5mml8gap2rkz3md7d56slp136kzk5f1d2hzzm5yg";
+    url = https://www.dyncall.org/r1.1/dyncall-1.1.tar.gz;
+    # https://www.dyncall.org/r1.1/SHA256
+    sha256 = "cf97fa3f142db832ff34235caa4d69a7d5f16716573d446b2d95069126e88795";
   };
 
   # XXX: broken tests, failures masked, lets avoid crashing a bunch for now :)
@@ -29,7 +29,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "Highly dynamic multi-platform foreign function call interface library";
-    homepage = http://www.dyncall.org;
+    homepage = https://www.dyncall.org;
     license = licenses.isc;
     maintainers = with maintainers; [ dtzWill ];
   };