Skip to content

Commit

Permalink
bitcoinarmory: use buildPythonApplication
Browse files Browse the repository at this point in the history
because mkPythonDerivation shouldn't be used directly anymore.
  • Loading branch information
FRidh committed Oct 20, 2017
1 parent 7f43dd3 commit 26b7a68
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/applications/misc/bitcoinarmory/default.nix
Expand Up @@ -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}";

Expand All @@ -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 ];

Expand Down

0 comments on commit 26b7a68

Please sign in to comment.