summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-06-10 10:52:31 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-10 19:52:31 +0200
commitc78ae4251f0ce38480d768960e9b98edd552783a (patch)
tree0213e35a2626d56f3b4c455edd07cb4f25a3f034
parent187878d0f1d0aa76ca28c4462b0a1dcf6484b44b (diff)
downloadnixlib-c78ae4251f0ce38480d768960e9b98edd552783a.tar
nixlib-c78ae4251f0ce38480d768960e9b98edd552783a.tar.gz
nixlib-c78ae4251f0ce38480d768960e9b98edd552783a.tar.bz2
nixlib-c78ae4251f0ce38480d768960e9b98edd552783a.tar.lz
nixlib-c78ae4251f0ce38480d768960e9b98edd552783a.tar.xz
nixlib-c78ae4251f0ce38480d768960e9b98edd552783a.tar.zst
nixlib-c78ae4251f0ce38480d768960e9b98edd552783a.zip
altcoins.litecoin: 0.15.1 -> 0.16.0 (#41545)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/litecoin/versions.

These checks were done:

- built on NixOS
- /nix/store/27nwgb0f89hmkhfd4rs7lp78dhdnmkd3-litecoin-0.16.0/bin/litecoind passed the binary check.
- /nix/store/27nwgb0f89hmkhfd4rs7lp78dhdnmkd3-litecoin-0.16.0/bin/litecoin-cli passed the binary check.
- /nix/store/27nwgb0f89hmkhfd4rs7lp78dhdnmkd3-litecoin-0.16.0/bin/litecoin-tx passed the binary check.
- /nix/store/27nwgb0f89hmkhfd4rs7lp78dhdnmkd3-litecoin-0.16.0/bin/test_litecoin passed the binary check.
- /nix/store/27nwgb0f89hmkhfd4rs7lp78dhdnmkd3-litecoin-0.16.0/bin/bench_litecoin passed the binary check.
- Warning: no invocation of /nix/store/27nwgb0f89hmkhfd4rs7lp78dhdnmkd3-litecoin-0.16.0/bin/litecoin-qt had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/27nwgb0f89hmkhfd4rs7lp78dhdnmkd3-litecoin-0.16.0/bin/test_litecoin-qt had a zero exit code or showed the expected version
- 5 of 7 passed binary check by having a zero exit code.
- 0 of 7 passed binary check by having the new version present in output.
- found 0.16.0 with grep in /nix/store/27nwgb0f89hmkhfd4rs7lp78dhdnmkd3-litecoin-0.16.0
- directory tree listing: https://gist.github.com/c4a75d440e40edc63d7f86819e60beda
- du listing: https://gist.github.com/72a199fee6e78c7261e85fc15fa3c1d6
-rw-r--r--pkgs/applications/altcoins/litecoin.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/altcoins/litecoin.nix b/pkgs/applications/altcoins/litecoin.nix
index 12cf5dcb71c1..b930923e8f45 100644
--- a/pkgs/applications/altcoins/litecoin.nix
+++ b/pkgs/applications/altcoins/litecoin.nix
@@ -8,13 +8,13 @@ with stdenv.lib;
 stdenv.mkDerivation rec {
 
   name = "litecoin" + (toString (optional (!withGui) "d")) + "-" + version;
-  version = "0.15.1";
+  version = "0.16.0";
 
   src = fetchFromGitHub {
     owner = "litecoin-project";
     repo = "litecoin";
     rev = "v${version}";
-    sha256 = "01q0lj0grabyfh67ar984m9lv9xs0rakadkci8jpfbp8xw166r40";
+    sha256 = "1g79sbplkn2bnb17i2kyh1d64bjl3ihbx83n0xssvjaajn56hbzw";
   };
 
   nativeBuildInputs = [ pkgconfig autoreconfHook ];