Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8262ecd369c4
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5f814bf9cc46
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Apr 16, 2020

  1. Copy the full SHA
    ffbf9af View commit details
  2. dkimpy: 1.0.2 -> 1.0.4

    r-ryantm authored and Jon committed Apr 16, 2020
    Copy the full SHA
    f7500ac View commit details
  3. Merge pull request #85363 from prusnak/jitsi-meet-electron

    jitsi-meet-electron: 2.0.0 -> 2.0.2
    bhipple authored Apr 16, 2020
    Copy the full SHA
    5f814bf View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix
  2. +2 −2 pkgs/development/python-modules/dkimpy/default.nix
Original file line number Diff line number Diff line change
@@ -7,11 +7,11 @@

stdenv.mkDerivation rec {
pname = "jitsi-meet-electron";
version = "2.0.0";
version = "2.0.2";

src = fetchurl {
url = "https://github.com/jitsi/jitsi-meet-electron/releases/download/v${version}/jitsi-meet-x86_64.AppImage";
sha256 = "11ci9dqhy8hkb4fwykjvcvai20ahqhjil825n1y1xf663ch8by93";
sha256 = "04y3qn2clvsfiyp9s6ib09mfxspv3kpr9248sda8s09n1cm0jpps";
name="${pname}-${version}.AppImage";
};

4 changes: 2 additions & 2 deletions pkgs/development/python-modules/dkimpy/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@

buildPythonPackage rec {
pname = "dkimpy";
version = "1.0.2";
version = "1.0.4";

src = fetchPypi {
inherit pname version;
sha256 = "19rz48pzz1i5cc896khaqx2hkhcj5hwsklnyynrdgdr5818qjyff";
sha256 = "14idcs0wiyc0iyi5bz3xqimxf3x6dizcjfn92s2ka5zxp95xdyvd";
};

checkInputs = [ pytest ];