Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

fundoc: init at 0.4.1

figsoda d236e2cf 32c21782

+24
+22
pkgs/development/tools/fundoc/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "fundoc"; 5 + version = "0.4.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "csssr"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0nd03c2lz07ghaab67kgl5pw8z8mv6kwx3xzr4pqr7v5b983py6v"; 12 + }; 13 + 14 + cargoSha256 = "sha256-6riBlCyqNN2nzgwfVfbRy1avT9b0PdetOrbmbaltsjE="; 15 + 16 + meta = with lib; { 17 + description = "Language agnostic documentation generator"; 18 + homepage = "https://github.com/csssr/fundoc"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ figsoda ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 14009 14009 inherit (darwin.apple_sdk.frameworks) IOKit; 14010 14010 }; 14011 14011 14012 + fundoc = callPackage ../development/tools/fundoc { }; 14013 + 14012 14014 funnelweb = callPackage ../development/tools/literate-programming/funnelweb { }; 14013 14015 14014 14016 gede = libsForQt5.callPackage ../development/tools/misc/gede { };