query
On this page

fetchcvs

pkgs.fetchcvs

Functor
Docs pulled from | This Revision | 17 minutes ago

No reference documentation found yet.

Contribute now!


Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.

Noogle detected

This is a Functor

Learn about functors

Implementation

The following is the current implementation of this function.

{
      cvsRoot,
      module,
      tag ? null,
      date ? null,
      outputHash,
      outputHashAlgo,
    }:

    stdenvNoCC.mkDerivation {
      name = "cvs-export";
      builder = ./builder.sh;
      nativeBuildInputs = [
        cvs
        openssh
      ];

      inherit outputHash outputHashAlgo;
      outputHashMode = "recursive";

      inherit
        cvsRoot
        module
        tag
        date
        ;
    }