cjdns: 20.2 -> 20.3 (#61990)

cjdns: 20.2 -> 20.3
This commit is contained in:
Jörg Thalheim 2019-05-25 09:16:18 +01:00 committed by GitHub
commit dae9bb9afb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }:
let version = "20.2"; in
let version = "20.3"; in
stdenv.mkDerivation {
name = "cjdns-"+version;
@ -8,13 +8,14 @@ stdenv.mkDerivation {
owner = "cjdelisle";
repo = "cjdns";
rev = "cjdns-v${version}";
sha256 = "13zhcfwx8c3vdcf6ifivrgf8q7mgx00vnxcspdz88zk7dh65c6jn";
sha256 = "02cxrjmpi7pyf0qfvhkqg3y5rq7vlnib55n2hhxnyhzznxhgrsgy";
};
buildInputs = [ which python27 nodejs ] ++
# for flock
stdenv.lib.optional stdenv.isLinux utillinux;
CFLAGS = "-O2";
buildPhase =
stdenv.lib.optionalString stdenv.isAarch32 "Seccomp_NO=1 "
+ "bash do";