bitcoinarmory: fix build (#57674)
for #56826 see https://hydra.nixos.org/build/90482597/nixlog/2
This commit is contained in:
parent
c5ea58030f
commit
7251fc2d45
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchFromGitHub, pythonPackages
|
{ stdenv, fetchFromGitHub, pythonPackages
|
||||||
, pkgconfig, autoreconfHook, rsync
|
, pkgconfig, autoreconfHook, rsync
|
||||||
, swig, qt4, fcgi
|
, swig, qt48Full, fcgi
|
||||||
, bitcoin, procps, utillinux
|
, bitcoin, procps, utillinux
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
@ -16,7 +16,6 @@ in buildPythonApplication {
|
|||||||
owner = "goatpig";
|
owner = "goatpig";
|
||||||
repo = "BitcoinArmory";
|
repo = "BitcoinArmory";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
#sha256 = "023c7q1glhrkn4djz3pf28ckd1na52lsagv4iyfgchqvw7qm7yx2";
|
|
||||||
sha256 = "0pjk5qx16n3kvs9py62666qkwp2awkgd87by4karbj7vk6p1l14h"; fetchSubmodules = true;
|
sha256 = "0pjk5qx16n3kvs9py62666qkwp2awkgd87by4karbj7vk6p1l14h"; fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -25,14 +24,18 @@ in buildPythonApplication {
|
|||||||
# FIXME bitcoind doesn't die on shutdown. Need some sort of patch to fix that.
|
# FIXME bitcoind doesn't die on shutdown. Need some sort of patch to fix that.
|
||||||
#patches = [ ./shutdown-fix.patch ];
|
#patches = [ ./shutdown-fix.patch ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [
|
|
||||||
autoreconfHook
|
autoreconfHook
|
||||||
|
pkgconfig
|
||||||
swig
|
swig
|
||||||
qt4
|
pyqt4
|
||||||
fcgi
|
qt48Full
|
||||||
rsync # used by silly install script (TODO patch upstream)
|
rsync # used by silly install script (TODO patch upstream)
|
||||||
];
|
];
|
||||||
|
buildInputs = [
|
||||||
|
qt48Full
|
||||||
|
fcgi
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pyqt4
|
pyqt4
|
||||||
|
Loading…
x
Reference in New Issue
Block a user