Because enaml 0.13.0 doesn't work with atom 0.7.0,
which is already in nixpkgs. 0.14.0 works again.
(`enaml/layout/strength_member.py` was calling `__init__`
on `Value` with 3 positional parameters, but atom 0.7.0
changed them to named ones, and enaml 0.14.0 is updated
accordingly).
* nfd: init at version 0.7.1
- Add NFD derivation
- Link NFD derivation as a top-level package
* Applied revision suggestions
* Add fetchSubmodules
NFD uses websocket++ 0.8.1-hotfix in their stable release so that it can be built with boost 175.
ndn-cxx is built with boost 169 in nixpkgs, although it could use the newest version, so I'm matching the same version.
* Fixed tests and cleanup
* Fix typo in repo revision
* Add fetch submodules
NFD build script requires the complete websocket++ source in the build directory.
I could not build it reusing the packages websocket++.
* Call to pre and post check hooks
Co-authored-by: Ryan Burns <52847440+r-burns@users.noreply.github.com>
* Default to fetch NFD submodules
* Fix license
Co-authored-by: Ryan Burns <52847440+r-burns@users.noreply.github.com>
* Switch to lib.optional for parameter string
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
* Change prefix as per nix defaults
* Removed redundant prefix environment variable
* Homepage to HTTPS
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Ryan Burns <52847440+r-burns@users.noreply.github.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
By default, pkg-config output will not include Requires.private
dependencies (which specify dependencies that only apply when building
statically). It will only do this when passed --static. In
pkgsStatic, let's ensure pkg-config is always operating in static
mode, because pkgsStatic will ensure that any libraries pkg-config
might find will always be static, and so will always need their
Requires.private dependencies.
This is very useful for Meson builds, because otherwise Meson will
only pass --static to pkg-config if the dependency was explicitly
"static : true", which is not likely to be the case for most stuff
we're building.
An alternative proposal was to patch Meson to add a special
environment variable to force dependencies to be "static : true". I
feel that the approach I've taken here is less invasive.