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: 84a13a8bddf0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e919b2f78f99
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 30, 2017

  1. scudcloud: 1.54 -> 1.58

    volhovm committed May 30, 2017
    Copy the full SHA
    4730b8b View commit details
  2. Merge pull request #26232 from volhovM/update/scudcloud-1.58

    scudcloud: 1.54 -> 1.58
    jagajaga authored May 30, 2017
    Copy the full SHA
    e919b2f View commit details
Showing with 7 additions and 9 deletions.
  1. +7 −9 pkgs/applications/networking/instant-messengers/scudcloud/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
{ stdenv, fetchgit, python3Packages }:
{ stdenv, fetchurl, python3Packages }:

python3Packages.buildPythonPackage {
name = "scudcloud-1.44";
let version = "1.58";
in python3Packages.buildPythonPackage {
name = "scudcloud-${version}";

# Branch 254-port-to-qt5
# https://github.com/raelgc/scudcloud/commit/65c304416dfdd5f456fa6f7301432a953d5e12d0
src = fetchgit {
url = https://github.com/raelgc/scudcloud/;
rev = "65c304416dfdd5f456fa6f7301432a953d5e12d0";
sha256 = "0h1055y88kldqw31ayqfx9zsksgxsyqd8h0hwnhj80yn3jcx0rp6";
src = fetchurl {
url = "https://github.com/raelgc/scudcloud/archive/v${version}.tar.gz";
sha256 = "1j84qdc2j3dvl1nhrjqm0blc8ww723p9a6hqprkkp8alw77myq1l";
};

propagatedBuildInputs = with python3Packages; [ pyqt5 dbus-python ];