octave.pkgs.doctest: init at 0.7.0
This commit is contained in:
parent
74944461e8
commit
4e3c4288c9
28
pkgs/development/octave-modules/doctest/default.nix
Normal file
28
pkgs/development/octave-modules/doctest/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "doctest";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "0hh9izj9ds69bmrvmmj16fd1c4z7733h50c7isl8f714srw26kf4";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/doctest/index.html";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Find and run example code within documentation";
|
||||
longDescription = ''
|
||||
Find and run example code within documentation. Formatted blocks
|
||||
of example code are extracted from documentation files and executed
|
||||
to confirm their output is correct. This can be part of a testing
|
||||
framework or simply to ensure that documentation stays up-to-date
|
||||
during software development.
|
||||
'';
|
||||
};
|
||||
}
|
@ -79,6 +79,8 @@ makeScope newScope (self:
|
||||
|
||||
divand = callPackage ../development/octave-modules/divand { };
|
||||
|
||||
doctest = callPackage ../development/octave-modules/doctest { };
|
||||
|
||||
general = callPackage ../development/octave-modules/general {
|
||||
nettle = pkgs.nettle;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user