-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Connection failed #19
Comments
I should note that this only happens when trying to build using Nix at rev
|
Found the cause of the issue, the |
Did you succeed at packaging this? |
Yes, I did. default.nix{ pkgs ? import <nixpkgs> { } }:
with pkgs;
libsForQt5.callPackage ./rmview.nix { } rmview.nix{ stdenv, fetchFromGitHub, mkDerivationWith, python3Packages }:
mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "rmview";
version = "1.0";
src = fetchFromGitHub {
owner = "bordaigorl";
repo = "rmview";
rev = "v${version}";
sha256 = "1d90cdvwxhdx5m9pv7wdnkrywnxsjs73z2w3xgrcafviwlpyy857";
};
patchPhase = "substituteInPlace src/rmview/rmview.py --replace 'from . import resources' ''";
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';
propagatedBuildInputs = with python3Packages; [
pyqt5
paramiko
twisted
];
meta = with stdenv.lib; {
homepage = "https://github.com/bordaigorl/rmview";
description = "Library to get the currently playing song and artist from Spotify";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
} |
Thanks! |
Hmm, I get a segfault:
Do you have any clue why? |
Interesting. What platform are you on? |
Darwin |
Is your channel up to date? The only inconsistency between our machines then must be the channel since I put Edit: I just ran |
For anyone reading this, the issue @anka-213 encountered was fixed by disabling sandboxing in |
While packaging up
rmview
using Nix, I encountered the following error when I run it. The IP is live and SSH works. What could be the cause?The text was updated successfully, but these errors were encountered: