lol

cjdns: 16 -> 17.3

+7 -12
+7 -12
pkgs/tools/networking/cjdns/default.nix
··· 1 - { stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }: 1 + { stdenv, fetchurl, nodejs, which, python27, utillinux }: 2 2 3 - let 4 - version = "16"; # see ${src}/util/version/Version.h 5 - date = "20150509"; 6 - in 3 + let version = "17.3"; in 7 4 stdenv.mkDerivation { 8 - name = "cjdns-${version}-${date}"; 5 + name = "cjdns-"+version; 9 6 10 - src = fetchFromGitHub { 11 - owner = "cjdelisle"; 12 - repo = "cjdns"; 13 - rev = "a05ade40dc31caebaf3aa770aac3ab2ecb02d867"; 14 - sha256 = "07vwsw5d0sdxypl187cyzzdrv0chf4yyjxcymf847afkfr249n29"; 7 + src = fetchurl { 8 + url = "https://github.com/cjdelisle/cjdns/archive/cjdns-v${version}.tar.gz"; 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 - maintainers = with maintainers; [ viric ehmry ]; 33 + maintainers = with maintainers; [ ehmry ]; 39 34 platforms = platforms.unix; 40 35 }; 41 36 }