Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8ba94a8fe8eb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 03c496cb8b46
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 1, 2019

  1. clightning: 0.7.1 -> 0.7.2.1

    jonasnick authored and jb55 committed Sep 1, 2019
    Copy the full SHA
    f74070b View commit details

Commits on Sep 2, 2019

  1. Merge pull request #67891 from jb55/clightning-0.7.2

    clightning: 0.7.1 -> 0.7.2.1
    mmahut authored Sep 2, 2019
    Copy the full SHA
    03c496c View commit details
Showing with 9 additions and 4 deletions.
  1. +9 −4 pkgs/applications/blockchains/clightning.nix
13 changes: 9 additions & 4 deletions pkgs/applications/blockchains/clightning.nix
Original file line number Diff line number Diff line change
@@ -4,17 +4,19 @@
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "clightning";
version = "0.7.1";
version = "0.7.2.1";

src = fetchurl {
url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip";
sha256 = "557be34410f27a8d55d9f31a40717a8f5e99829f2bd114c24e7ca1dd5f6b7d85";
sha256 = "3be716948efc1208b5e6a41e3034e4e4eecc5abbdac769fd1d999a104ac3a2ec";
};

enableParallelBuilding = true;

nativeBuildInputs = [ autoconf autogen automake libtool pkgconfig which unzip ];
buildInputs = [ sqlite gmp zlib python3 ];
buildInputs =
let py3 = python3.withPackages (p: [ p.Mako ]);
in [ sqlite gmp zlib py3 ];

makeFlags = [ "prefix=$(out) VERSION=v${version}" ];

@@ -23,7 +25,10 @@ stdenv.mkDerivation rec {
'';

postPatch = ''
patchShebangs tools/generate-wire.py
patchShebangs \
tools/generate-wire.py \
tools/update-mocks.sh \
tools/mockup.sh
'';

doCheck = false;