1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

cjdns: 20.2 -> 20.3

This commit is contained in:
Alexander Krupenkin 2019-05-24 11:01:31 +03:00
parent c89b2de425
commit eb7bd3206c
No known key found for this signature in database
GPG key ID: 0D0A7FA67911873E

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";