tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
cjdns: 16 -> 17.3
Emery Hemingway
10 years ago
36b5fd8d
ab9b6933
+7
-12
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
cjdns
default.nix
+7
-12
pkgs/tools/networking/cjdns/default.nix
reviewed
···
1
1
-
{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }:
1
1
+
{ stdenv, fetchurl, nodejs, which, python27, utillinux }:
2
2
3
3
-
let
4
4
-
version = "16"; # see ${src}/util/version/Version.h
5
5
-
date = "20150509";
6
6
-
in
3
3
+
let version = "17.3"; in
7
4
stdenv.mkDerivation {
8
8
-
name = "cjdns-${version}-${date}";
5
5
+
name = "cjdns-"+version;
9
6
10
10
-
src = fetchFromGitHub {
11
11
-
owner = "cjdelisle";
12
12
-
repo = "cjdns";
13
13
-
rev = "a05ade40dc31caebaf3aa770aac3ab2ecb02d867";
14
14
-
sha256 = "07vwsw5d0sdxypl187cyzzdrv0chf4yyjxcymf847afkfr249n29";
7
7
+
src = fetchurl {
8
8
+
url = "https://github.com/cjdelisle/cjdns/archive/cjdns-v${version}.tar.gz";
9
9
+
sha256 = "00p62y7b89y3piirpj27crprji8nh0zv7zh4mcqhzh6r39jxz4ri";
15
10
};
16
11
17
12
buildInputs = [ which python27 nodejs ] ++
···
35
30
homepage = https://github.com/cjdelisle/cjdns;
36
31
description = "Encrypted networking for regular people";
37
32
license = licenses.gpl3;
38
38
-
maintainers = with maintainers; [ viric ehmry ];
33
33
+
maintainers = with maintainers; [ ehmry ];
39
34
platforms = platforms.unix;
40
35
};
41
36
}