treewide: use wafHook
Replace "waf" phases with wafHook that manages everything automatically. Should make things more modular. Packages affected here are: - a2jmidid - ams-lv2 - ardour - fomp - guitarix - ingen - jalv - mda-lv2 - non - patchage - hamster-time-tracker - kupfer - xiphos - xfce4-dockbarx-plugin - xfce4-namebar-plugin - dropbox - clasp - aubio - liliv - lv2 - lvtk - ntk - raul - sratom - suil - ganv - ndn-cxx - ns3 - serd - sord - termbox - wxmupen64plus - jackaudio - pflask - blockhash - glmark2 - weighttp
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, openssl, doxygen, boost, sqlite, pkgconfig, python, pythonPackages }:
|
||||
{ stdenv, fetchFromGitHub, openssl, doxygen
|
||||
, boost, sqlite, pkgconfig, python, pythonPackages, wafHook }:
|
||||
let
|
||||
version = "0.6.3";
|
||||
in
|
||||
@@ -10,22 +11,13 @@ stdenv.mkDerivation {
|
||||
rev = "a3bf4319ed483a4a6fe2c96b79ec4491d7217f00";
|
||||
sha256 = "076jhrjigisqz5n8dgxwd5fhimg69zhm834m7w9yvf9afgzrr50h";
|
||||
};
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
nativeBuildInputs = [ pkgconfig wafHook ];
|
||||
buildInputs = [ openssl doxygen boost sqlite python pythonPackages.sphinx];
|
||||
preConfigure = ''
|
||||
patchShebangs waf
|
||||
./waf configure \
|
||||
--prefix=$out \
|
||||
--with-openssl=${openssl.dev} \
|
||||
--boost-includes=${boost.dev}/include \
|
||||
--boost-libs=${boost.out}/lib
|
||||
'';
|
||||
buildPhase = ''
|
||||
./waf
|
||||
'';
|
||||
installPhase = ''
|
||||
./waf install
|
||||
'';
|
||||
configureFlags = [
|
||||
"--with-openssl=${openssl.dev}"
|
||||
"--boost-includes=${boost.dev}/include"
|
||||
"--boost-libs=${boost.out}/lib"
|
||||
];
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://named-data.net/;
|
||||
description = "A Named Data Neworking (NDN) or Content Centric Networking (CCN) abstraction";
|
||||
|
||||
Reference in New Issue
Block a user