Merge pull request #24908 from adamruzicka/cjdns-v19.1

cjdns: 18 -> 19.1
This commit is contained in:
Joachim F 2017-04-16 12:10:59 +01:00 committed by GitHub
commit 901a0bb9fa

View file

@ -1,20 +1,14 @@
{ stdenv, fetchurl, fetchpatch, nodejs, which, python27, utillinux }:
let version = "18"; in
let version = "19.1"; in
stdenv.mkDerivation {
name = "cjdns-"+version;
src = fetchurl {
url = "https://github.com/cjdelisle/cjdns/archive/cjdns-v${version}.tar.gz";
sha256 = "1as7n730ppn93cpal7s6r6iq1qx46m0c45iwy8baypbpp42zxrap";
sha256 = "53c568a500215b055a9894178eb4477bd93a6e1abf751d0bc5ef2a03ea01a188";
};
patches = [(fetchpatch {
name = "glibc-2.25.diff";
url = https://github.com/cjdelisle/cjdns/pull/1017.diff;
sha256 = "1k05d1w04lngcki56b6brkwg9xakzsbr5ibkcba8112v6jdzw51f";
})];
buildInputs = [ which python27 nodejs ] ++
# for flock
stdenv.lib.optional stdenv.isLinux utillinux;