3
0
Fork 0
forked from mirrors/nixpkgs

scudcloud: 1.54 -> 1.58

This commit is contained in:
Mikhail Volkhov 2017-05-30 13:05:01 +03:00
parent 7f3b857d0d
commit 4730b8ba05
No known key found for this signature in database
GPG key ID: 17A854CA823709D7

View file

@ -1,14 +1,12 @@
{ stdenv, fetchgit, python3Packages }: { stdenv, fetchurl, python3Packages }:
python3Packages.buildPythonPackage { let version = "1.58";
name = "scudcloud-1.44"; in python3Packages.buildPythonPackage {
name = "scudcloud-${version}";
# Branch 254-port-to-qt5 src = fetchurl {
# https://github.com/raelgc/scudcloud/commit/65c304416dfdd5f456fa6f7301432a953d5e12d0 url = "https://github.com/raelgc/scudcloud/archive/v${version}.tar.gz";
src = fetchgit { sha256 = "1j84qdc2j3dvl1nhrjqm0blc8ww723p9a6hqprkkp8alw77myq1l";
url = https://github.com/raelgc/scudcloud/;
rev = "65c304416dfdd5f456fa6f7301432a953d5e12d0";
sha256 = "0h1055y88kldqw31ayqfx9zsksgxsyqd8h0hwnhj80yn3jcx0rp6";
}; };
propagatedBuildInputs = with python3Packages; [ pyqt5 dbus-python ]; propagatedBuildInputs = with python3Packages; [ pyqt5 dbus-python ];