FreeBSD patches for miniupnpc, boost, bitcoin
This commit is contained in:
parent
a1ade02cdc
commit
3cb831d2bc
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost
|
||||||
, zlib, miniupnpc, qt4, protobuf, qrencode
|
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode
|
||||||
, withGui }:
|
, withGui }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, icu, expat, zlib, bzip2, python, fixDarwinDylibNames
|
{ stdenv, icu, expat, zlib, bzip2, python, fixDarwinDylibNames
|
||||||
, toolset ? if stdenv.isDarwin then "clang" else null
|
, toolset ? if stdenv.isDarwin || stdenv.isFreeBSD then "clang" else null
|
||||||
, enableRelease ? true
|
, enableRelease ? true
|
||||||
, enableDebug ? false
|
, enableDebug ? false
|
||||||
, enableSingleThreaded ? false
|
, enableSingleThreaded ? false
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
let version = "1.9.20150430"; in
|
let version = "24d54ba13af4e53aba19c23898a373feecb41bd0"; in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "miniupnpc-${version}";
|
name = "miniupnpc-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
owner = "miniupnp";
|
||||||
sha256 = "0ivnvzla0l2pzmy8s0j8ss0fnpsii7z9scvyl4a13g9k911hgmvn";
|
repo = "miniupnp";
|
||||||
name = "${name}.tar.gz";
|
sha256 = "0j78dvlfh1a3a27zhvv001cb1d7vcgyv33bd1zr36drg64b6hrgw";
|
||||||
|
rev = version;
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user