forked from mirrors/nixpkgs
Merge pull request #30980 from wizeman/u/fix-cjdns-hash
cjdns: fix hash
This commit is contained in:
commit
26e4f6f4f8
|
@ -1,12 +1,14 @@
|
||||||
{ stdenv, fetchurl, fetchpatch, nodejs, which, python27, utillinux }:
|
{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }:
|
||||||
|
|
||||||
let version = "20"; in
|
let version = "20"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "cjdns-"+version;
|
name = "cjdns-"+version;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/cjdelisle/cjdns/archive/cjdns-v${version}.tar.gz";
|
owner = "cjdelisle";
|
||||||
sha256 = "1dyqxi9l2pmrgm16a161909rg3vfzvib40frr7p6ddpk8yfh5888";
|
repo = "cjdns";
|
||||||
|
rev = "cjdns-v${version}";
|
||||||
|
sha256 = "0gqcspiz1n0j711vwq807cy456dkcf03r376l04qc92173g2fzrx";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ which python27 nodejs ] ++
|
buildInputs = [ which python27 nodejs ] ++
|
||||||
|
|
Loading…
Reference in a new issue