#pragma once #include "derivations.hh" namespace nix { /* Read a derivation, after ensuring its existence through ensurePath(). */ Derivation derivationFromPath(StoreAPI & store, const Path & drvPath); /* Place in `paths' the set of all store paths in the file system closure of `storePath'; that is, all paths than can be directly or indirectly reached from it. `paths' is not cleared. If `flipDirection' is true, the set of paths that can reach `storePath' is returned; that is, the closures under the `referrers' relation instead of the `references' relation is returned. */ void computeFSClosure(StoreAPI & store, const Path & path, PathSet & paths, bool flipDirection = false, bool includeOutputs = false, bool includeDerivers = false); /* Return the path corresponding to the output identifier `id' in the given derivation. */ Path findOutput(const Derivation & drv, string id); bool willBuildLocally(const Derivation & drv); bool substitutesAllowed(const Derivation & drv); } /table>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/web.scm
AgeCommit message (Expand)Author
2019-05-31services: Add patchwork....Christopher Baines
2018-10-18services: dhcp-client: Deprecate 'dhcp-client-service' procedure....Ludovic Courtès
2018-09-28tests: Add missing copyright statement....Marius Bakke
2018-09-26services: Add Varnish service....Marius Bakke
2018-09-10services: tailon: Move to (gnu services web)....Ludovic Courtès
2018-06-13tests: Honor the return value of 'start-service'....Clément Lassieur
2018-06-01services: Add hpcguix-web....Rouby Pierre-Antoine
2018-01-17gnu: services: web: Add service for httpd....Christopher Baines
2018-01-17gnu: tests: web: Generalise the nginx test....Christopher Baines
2017-12-19tests: Adjust php-fpm test to new nginx API....Ludovic Courtès
2017-12-18services: nginx: Replace 'http-port' and 'https-port' with 'listen'....Clément Lassieur
2017-12-12gnu: services: Add php-fpm....nee
2017-12-11services: web: Remove default certificate and key files for nginx....Christopher Baines
2017-07-20tests: Use 'virtual-machine' records instead of monadic procedures....Ludovic Courtès