mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
bitcoinarmory: use buildPythonApplication
because mkPythonDerivation shouldn't be used directly anymore.
This commit is contained in:
parent
7f43dd3b3b
commit
26b7a68596
@ -7,9 +7,9 @@ let
|
||||
|
||||
version = "0.96.1";
|
||||
sitePackages = pythonPackages.python.sitePackages;
|
||||
inherit (pythonPackages) mkPythonDerivation pyqt4 psutil twisted;
|
||||
inherit (pythonPackages) buildPythonApplication pyqt4 psutil twisted;
|
||||
|
||||
in mkPythonDerivation {
|
||||
in buildPythonApplication {
|
||||
|
||||
name = "bitcoinarmory-${version}";
|
||||
|
||||
@ -21,6 +21,8 @@ in mkPythonDerivation {
|
||||
sha256 = "0pjk5qx16n3kvs9py62666qkwp2awkgd87by4karbj7vk6p1l14h"; fetchSubmodules = true;
|
||||
};
|
||||
|
||||
format = "other";
|
||||
|
||||
# FIXME bitcoind doesn't die on shutdown. Need some sort of patch to fix that.
|
||||
#patches = [ ./shutdown-fix.patch ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user