/* GNU Guix --- Functional package management for GNU Copyright (C) 2016, 2017 Ludovic Courtès This file is part of GNU Guix. GNU Guix is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. GNU Guix is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Guix. If not, see . */ /* Interface to built-in derivation builders. */ #pragma once #include #include #include namespace nix { inline bool isBuiltin(const Derivation & drv) { return string(drv.builder, 0, 8) == "builtin:"; } /* Build DRV, which lives at DRVPATH. */ typedef void (*derivationBuilder) (const Derivation &drv, const std::string &drvPath, const std::string &output); /* Return the built-in builder called BUILDER, or NULL if none was found. */ derivationBuilder lookupBuiltinBuilder(const std::string &builder); /* Return the list of supported built-in builder names. */ std::list builtinBuilderNames(); } edee8a5f613c833958c76892f4'>diff
AgeCommit message (Expand)Author
2017-04-03gnu: ed: Update to 1.14.2....Marius Bakke
2017-01-12gnu: ed: Update to 1.14.1....Marius Bakke
2016-02-15gnu: ed: Use 'modify-phases'....Efraim Flashner
2016-02-15gnu: ed: Update to 1.13....Efraim Flashner
2015-07-10gnu: ed: Update to 1.12....Mark H Weaver
2015-04-04gnu: ed: Update to 1.11....Mark H Weaver
2014-09-13gnu: Synchronize GNU package descriptions with upstream....Ludovic Courtès
2014-03-29gnu: ed: Upgrade to 1.10....Ludovic Courtès
2013-12-01gnu: Synchronize descriptions with 'gnumaint'.Ludovic Courtès
2013-10-09Synchronize package descriptions with the Womb....Ludovic Courtès
2013-06-22gnu: ed: Upgrade to 1.9....Ludovic Courtès
2013-04-25gnu: ed: Update to 1.8....Ludovic Courtès
2013-04-17gnu: Use synopses from the Womb....Ludovic Courtès