summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2020-11-21 14:33:04 +0000
committerGitHub <noreply@github.com>2020-11-21 14:33:04 +0000
commit7bbe4fc39f8f81663e5149f3b69de9e8145a23af (patch)
treeee230b245207e135d8a6c98c4704df616edf2564 /pkgs
parent547d660f64cbf9f727e3c0ca28982bc9b70e6d6a (diff)
parente4c6febee706cc66fba28beeab8bdd3b308975cf (diff)
Merge pull request #104211 from prusnak/electrum
electrum: 4.0.4 -> 4.0.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/electrum/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/electrum/default.nix b/pkgs/applications/misc/electrum/default.nix
index f2d779c8a650..40ecd61304f1 100644
--- a/pkgs/applications/misc/electrum/default.nix
+++ b/pkgs/applications/misc/electrum/default.nix
@@ -19,7 +19,7 @@
}:
let
- version = "4.0.4";
+ version = "4.0.5";
# electrum is not compatible with dnspython 2.0.0 yet
# use the latest 1.x release instead
@@ -43,7 +43,7 @@ let
owner = "spesmilo";
repo = "electrum";
rev = version;
- sha256 = "0bzvyfqnd0r0l8syf95hr3nsh8rmmmcs74bvc7v04v0nm5m0fmf1";
+ sha256 = "0fdsgxzgsxvx6hhjag894nzzdfq989bx1d4anljzcz2ppy4ivpxg";
extraPostFetch = ''
mv $out ./all
@@ -58,7 +58,7 @@ py.pkgs.buildPythonApplication {
src = fetchurl {
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
- sha256 = "03dc5jwgp18sism5v4lbqfyn2zljchng8j2yi07yf8i01ivy2mmv";
+ sha256 = "06ml9lwa5k2dp56sm5s7dsl6qirqmgim7rn853cqcq9n45z41437";
};
postUnpack = ''
@@ -154,6 +154,6 @@ py.pkgs.buildPythonApplication {
homepage = "https://electrum.org/";
license = licenses.mit;
platforms = platforms.all;
- maintainers = with maintainers; [ ehmry joachifm np ];
+ maintainers = with maintainers; [ ehmry joachifm np prusnak ];
};
}