about summary refs log tree commit diff
path: root/pkgs/applications/misc/electrum-ltc
diff options
context:
space:
mode:
authorLorenzo Manacorda <lorenzo@mailbox.org>2017-05-05 21:44:28 +0200
committerLorenzo Manacorda <lorenzo@mailbox.org>2017-05-05 22:23:11 +0200
commitfe792c46d09ec32889890dce5c76ea0b8cf2c432 (patch)
treeddf02f076b04e2770ab608b274716523bf11c84e /pkgs/applications/misc/electrum-ltc
parent756695c3fa4d3f45b83172938c973d7b3a86898c (diff)
electrum-ltc: init at 2.6.4.2
lightweight litecoin wallet
Diffstat (limited to 'pkgs/applications/misc/electrum-ltc')
-rw-r--r--pkgs/applications/misc/electrum-ltc/default.nix54
1 files changed, 54 insertions, 0 deletions
diff --git a/pkgs/applications/misc/electrum-ltc/default.nix b/pkgs/applications/misc/electrum-ltc/default.nix
new file mode 100644
index 0000000000000..50cc434f6319c
--- /dev/null
+++ b/pkgs/applications/misc/electrum-ltc/default.nix
@@ -0,0 +1,54 @@
+{ stdenv
+, fetchurl
+, python2Packages
+}:
+
+python2Packages.buildPythonApplication rec {
+  name = "electrum-ltc-${version}";
+  version = "2.6.4.2";
+
+  src = fetchurl {
+    url = "https://electrum-ltc.org/download/Electrum-LTC-${version}.tar.gz";
+    sha256 = "0sqcyk6n6kgaiinnwh6mzbbn4whk3ga59r5bw5rqmnnfqk1xdnb4";
+  };
+
+  propagatedBuildInputs = with python2Packages; [
+    pyqt4
+    slowaes
+    ecdsa
+    pbkdf2
+    requests
+    qrcode
+    ltc_scrypt
+    protobuf3_0
+    dns
+    jsonrpclib
+  ];
+
+  preBuild = ''
+    sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
+    pyrcc4 icons.qrc -o gui/qt/icons_rc.py
+    # Recording the creation timestamps introduces indeterminism to the build
+    sed -i '/Created: .*/d' gui/qt/icons_rc.py
+  '';
+
+  checkPhase = ''
+    $out/bin/electrum-ltc help >/dev/null
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Litecoin thin client";
+    longDescription = ''
+      Electrum-LTC is a simple, but powerful Litecoin wallet. A twelve-word
+      security passphrase (or “seed”) leaves intruders stranded and your peace
+      of mind intact. Keep it on paper, or in your head... and never worry
+      about losing your litecoins to theft or hardware failure. No waiting, no
+      lengthy blockchain downloads and no syncing to the network.
+    '';
+    homepage = https://electrum-ltc.org/;
+    license = licenses.mit;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ asymmetric ];
+  };
+}
+