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: e14c4ba9705a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e61c924adba6
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Apr 16, 2020

  1. Copy the full SHA
    cd5bc89 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    20252ee View commit details
  3. Copy the full SHA
    e61c924 View commit details
Showing with 11 additions and 11 deletions.
  1. +4 −4 pkgs/development/interpreters/evcxr/default.nix
  2. +4 −4 pkgs/servers/mautrix-whatsapp/default.nix
  3. +3 −3 pkgs/tools/networking/findomain/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/interpreters/evcxr/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "evcxr";
version = "0.5.0";
version = "0.5.1";

src = fetchFromGitHub {
owner = "google";
repo = "evcxr";
rev = "239e431c58d04c641da22af791e4d3e1b894365e";
sha256 = "0vkcis06gwsqfwvrl8xcf74mfcs6j77b9fhcz5rrh77mwl7ixsdc";
rev = "582ce09f216d4812f7d152f6eedf0b034fc4dbbd";
sha256 = "12hlqgh74z8vmd7fkxh4vk3dqp8hlhzkxnbyywk6nphi562n6w5w";
};

cargoSha256 = "0pamwqhw3sj4anqc1112l5cayhqzibdhqjc28apfrkf2m63cclzi";
cargoSha256 = "0yr8vwlpfsg47sg0032yrsdcgxyky0hy4963zkh0pmjykbyqkb3h";

nativeBuildInputs = [ pkgconfig makeWrapper cmake ];
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
8 changes: 4 additions & 4 deletions pkgs/servers/mautrix-whatsapp/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule {
pname = "mautrix-whatsapp-unstable";
version = "2020-04-02";
version = "2020-04-12";

src = fetchFromGitHub {
owner = "tulir";
repo = "mautrix-whatsapp";
rev = "064b5b8fedb6896d04509aa0e094a8d9f83426c2";
sha256 = "1xky31x5jk7yxh875nk20vvsn9givy6vxdqhqg5qwf4xjj2zqh2p";
rev = "44bb623e7a7486a0cdd13fd67b2aaca2ddba20ce";
sha256 = "1fwxn6511pq9fdc8d2jp4vgkm1zag55pig75qdxfn63hl3i2607k";
};

modSha256 = "0qcxxhfp3fkx90r3lwhi0lkzg3digwrnxk8cack11k717szg7zrd";
modSha256 = "04pdap1q7zsa1wv2h0j9104fawn95g37yqslmp2mq7722hiqhp9x";

meta = with stdenv.lib; {
homepage = "https://github.com/tulir/mautrix-whatsapp";
6 changes: 3 additions & 3 deletions pkgs/tools/networking/findomain/default.nix
Original file line number Diff line number Diff line change
@@ -9,16 +9,16 @@

rustPlatform.buildRustPackage rec {
pname = "findomain";
version = "1.4.5";
version = "1.5.0";

src = fetchFromGitHub {
owner = "Edu4rdSHL";
repo = pname;
rev = version;
sha256 = "1p4ddyqg1v27hf19n1ksmfvj5s6z2c8i13syb0anhlyzqy576hwb";
sha256 = "1w3parmk3836v5ghn3cgcxyk0alk05r5ljl3j1fpnly5xvl131rd";
};

cargoSha256 = "0mdcj4almwziq1ph3imfdx41a96xq19sbjm7wsm9lxlzhvv256br";
cargoSha256 = "1cs076cgkzjan6y78a3bhriv2q2s83hp5vzhkjwz4dqn83r6b8hx";

nativeBuildInputs = [ installShellFiles perl ];
buildInputs = lib.optional stdenv.isDarwin Security;