Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 00787c3f04ba
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f37db11fa7b7
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 15, 2020

  1. dyncall: 1.0 -> 1.1

    r-ryantm committed Jan 15, 2020
    Copy the full SHA
    b37b32e View commit details
  2. Copy the full SHA
    6b11639 View commit details

Commits on Jan 21, 2020

  1. Merge pull request #77750 from r-ryantm/auto-update/dyncall

    dyncall: 1.0 -> 1.1
    dtzWill authored Jan 21, 2020
    Copy the full SHA
    f37db11 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/development/libraries/dyncall/default.nix
10 changes: 5 additions & 5 deletions pkgs/development/libraries/dyncall/default.nix
Original file line number Diff line number Diff line change
@@ -2,12 +2,12 @@

stdenv.mkDerivation {
pname = "dyncall";
version = "1.0";
version = "1.1";

src = fetchurl {
url = http://www.dyncall.org/r1.0/dyncall-1.0.tar.gz;
# http://www.dyncall.org/r1.0/SHA256
sha256 = "d1b6d9753d67dcd4d9ea0708ed4a3018fb5bfc1eca5f37537fba2bc4f90748f2";
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 ];
};