3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #30980 from wizeman/u/fix-cjdns-hash

cjdns: fix hash
This commit is contained in:
Orivej Desh 2017-11-01 04:32:21 +00:00 committed by GitHub
commit 26e4f6f4f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,14 @@
{ stdenv, fetchurl, fetchpatch, nodejs, which, python27, utillinux }:
{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }:
let version = "20"; in
stdenv.mkDerivation {
name = "cjdns-"+version;
src = fetchurl {
url = "https://github.com/cjdelisle/cjdns/archive/cjdns-v${version}.tar.gz";
sha256 = "1dyqxi9l2pmrgm16a161909rg3vfzvib40frr7p6ddpk8yfh5888";
src = fetchFromGitHub {
owner = "cjdelisle";
repo = "cjdns";
rev = "cjdns-v${version}";
sha256 = "0gqcspiz1n0j711vwq807cy456dkcf03r376l04qc92173g2fzrx";
};
buildInputs = [ which python27 nodejs ] ++