summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorJonas Nick <jonasd.nick@gmail.com>2019-07-08 12:50:40 +0000
committerJonas Nick <jonasd.nick@gmail.com>2019-07-08 12:52:36 +0000
commit5aa497fcd6ec23cc108b944bcf2c641c591778d2 (patch)
tree602f9a911a3340726f752fdb0960b45759fd9c73 /pkgs/applications/altcoins
parentf15d9d5123f9dfd97ac292ebc0643d0d7c4e7282 (diff)
downloadnixpkgs-5aa497fcd6ec23cc108b944bcf2c641c591778d2.tar
nixpkgs-5aa497fcd6ec23cc108b944bcf2c641c591778d2.tar.gz
nixpkgs-5aa497fcd6ec23cc108b944bcf2c641c591778d2.tar.bz2
nixpkgs-5aa497fcd6ec23cc108b944bcf2c641c591778d2.tar.lz
nixpkgs-5aa497fcd6ec23cc108b944bcf2c641c591778d2.tar.xz
nixpkgs-5aa497fcd6ec23cc108b944bcf2c641c591778d2.tar.zst
nixpkgs-5aa497fcd6ec23cc108b944bcf2c641c591778d2.zip
clightning: 0.7.0 -> 0.7.1
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/clightning.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/applications/altcoins/clightning.nix b/pkgs/applications/altcoins/clightning.nix
index 5f81dc76ecf..481e19c66cd 100644
--- a/pkgs/applications/altcoins/clightning.nix
+++ b/pkgs/applications/altcoins/clightning.nix
@@ -4,11 +4,11 @@
 with stdenv.lib;
 stdenv.mkDerivation rec {
   name = "clightning-${version}";
-  version = "0.7.0";
+  version = "0.7.1";
 
   src = fetchurl {
     url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip";
-    sha256 = "448022c2433cbf19bbd0f726344b0500c0c21ee5cc2291edf6b622f094cb3a15";
+    sha256 = "557be34410f27a8d55d9f31a40717a8f5e99829f2bd114c24e7ca1dd5f6b7d85";
   };
 
   enableParallelBuilding = true;
@@ -18,15 +18,6 @@ stdenv.mkDerivation rec {
 
   makeFlags = [ "prefix=$(out) VERSION=v${version}" ];
 
-  patches = [
-    # remove after 0.7.0
-    (fetchpatch {
-      name = "fix-0.7.0-build.patch";
-      url = "https://github.com/ElementsProject/lightning/commit/ffc03d2bc84dc42f745959fbb6c8007cf0a6f701.patch";
-      sha256 = "1m5fiz3m8k3nk09nldii8ij94bg6fqllqgdbiwj3sy12vihs8c4v";
-    })
-  ];
-
   configurePhase = ''
     ./configure --prefix=$out --disable-developer --disable-valgrind
   '';