mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
electrum: initial expression
Electrum is a Bitcoin thin-wallet. https://electrum.org
This commit is contained in:
parent
ae8a8b5deb
commit
e91daf327d
32
pkgs/applications/misc/electrum/default.nix
Normal file
32
pkgs/applications/misc/electrum/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchurl, pythonPackages, slowaes, ecdsa, pyqt4 }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
name = "electrum-${version}";
|
||||
version = "1.9.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.electrum.org/Electrum-${version}.tar.gz";
|
||||
sha256 = "8fc144a32013e4a747fea27fff981762a6b9e14cde9ffb405c4c721975d846ff";
|
||||
};
|
||||
|
||||
buildInputs = [ slowaes ecdsa ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
slowaes
|
||||
ecdsa
|
||||
pyqt4
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
mkdir -p $out/share
|
||||
sed -i 's@usr_share = .*@usr_share = os.getenv("out")+"/share"@' setup.py
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Bitcoin thin-wallet";
|
||||
long-description = "Electrum is an easy to use Bitcoin client. It protects you from losing coins in a backup mistake or computer failure, because your wallet can be recovered from a secret phrase that you can write on paper or learn by heart. There is no waiting time when you start the client, because it does not download the Bitcoin blockchain.";
|
||||
homepage = "https://electrum.org";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ "emery@vfemail.net" ];
|
||||
};
|
||||
}
|
18
pkgs/development/python-modules/ecdsa/default.nix
Normal file
18
pkgs/development/python-modules/ecdsa/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage, openssl }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "ecdsa-0.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/e/ecdsa/${name}.tar.gz";
|
||||
sha256 = "134mbq5xsvx54k9xm7zrizvh9imxmcz1w9mhyfr99p4i7wcnqfwf";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://github.com/warner/python-ecdsa";
|
||||
description = "pure-python ECDSA signature/verification";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
}
|
16
pkgs/development/python-modules/slowaes/default.nix
Normal file
16
pkgs/development/python-modules/slowaes/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "slowaes-0.1a1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/s/slowaes/${name}.tar.gz";
|
||||
sha256 = "83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "http://code.google.com/p/slowaes/";
|
||||
description = "AES implemented in pure python";
|
||||
license = stdenv.lib.licenses.apache;
|
||||
};
|
||||
}
|
@ -6157,6 +6157,8 @@ let
|
||||
|
||||
bsddb3 = callPackage ../development/python-modules/bsddb3 { };
|
||||
|
||||
ecdsa = callPackage ../development/python-modules/ecdsa { };
|
||||
|
||||
numeric = callPackage ../development/python-modules/numeric { };
|
||||
|
||||
pil = pythonPackages.pil;
|
||||
@ -6215,6 +6217,8 @@ let
|
||||
|
||||
setuptools = pythonPackages.setuptools;
|
||||
|
||||
slowaes = callPackage ../development/python-modules/slowaes { };
|
||||
|
||||
wxPython = pythonPackages.wxPython;
|
||||
wxPython28 = pythonPackages.wxPython28;
|
||||
|
||||
@ -7765,6 +7769,8 @@ let
|
||||
|
||||
ekho = callPackage ../applications/audio/ekho { };
|
||||
|
||||
electrum = callPackage ../applications/misc/electrum { };
|
||||
|
||||
elinks = callPackage ../applications/networking/browsers/elinks { };
|
||||
|
||||
elvis = callPackage ../applications/editors/elvis { };
|
||||
|
Loading…
Reference in New Issue
Block a user