mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
natural-docs: init at 2.1.1
This commit is contained in:
parent
a8e4f721aa
commit
42aa986406
36
pkgs/applications/misc/natural-docs/default.nix
Normal file
36
pkgs/applications/misc/natural-docs/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ stdenv, fetchzip, makeWrapper, mono, lib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "natural-docs";
|
||||
version = "2.1.1";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://naturaldocs.org/download/natural_docs/${version}/Natural_Docs_${version}.zip";
|
||||
sha256 = "03fizjgvhiw3lqyykqw1whdh97xyiy3f226c1348ll61ryjxamqw";
|
||||
};
|
||||
|
||||
dontPatch = true;
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp -r . $out/
|
||||
makeWrapper ${mono}/bin/mono $out/bin/NaturalDocs --add-flags "$out/NaturalDocs.exe"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Documentation generator for multiple programming languages.";
|
||||
longDescription = ''
|
||||
Natural Docs is an open source documentation generator for multiple
|
||||
programming languages. You document your code in a natural syntax that
|
||||
reads like plain English. Natural Docs then scans your code and builds
|
||||
high-quality HTML documentation from it.
|
||||
'';
|
||||
homepage = "https://naturaldocs.org";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = [ maintainers.nkpvk ];
|
||||
};
|
||||
}
|
|
@ -25369,6 +25369,8 @@ in
|
|||
|
||||
natron = callPackage ../applications/video/natron { };
|
||||
|
||||
natural-docs = callPackage ../applications/misc/natural-docs { };
|
||||
|
||||
neocomp = callPackage ../applications/window-managers/neocomp { };
|
||||
|
||||
newsflash = callPackage ../applications/networking/feedreaders/newsflash { };
|
||||
|
|
Loading…
Reference in a new issue