nixpkgs/pkgs/development/tools/fundoc/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

33 lines
913 B
Nix

{ lib, rustPlatform, fetchFromGitHub, fetchpatch }:
rustPlatform.buildRustPackage rec {
pname = "fundoc";
version = "0.5.0";
src = fetchFromGitHub {
owner = "daynin";
repo = pname;
rev = "v${version}";
hash = "sha256-8WWaYgfqGWrTV2EEeSPz1BN2ur7gsxFiHeDNMJdVDcw=";
};
cargoPatches = [
# updates outdated lock file and fixes a test
(fetchpatch {
name = "fix-tests.patch";
url = "https://github.com/daynin/fundoc/commit/7dd3cf53a1d1ed72b00bf38ea3a45ba4590da7ef.patch";
hash = "sha256-9Xsw2P4t9gzwc/qDU6U5+HZevPiQOOQo88gybC8QpyM=";
})
];
cargoHash = "sha256-yapFUkG2JfGb3N3iVEDpQunOyRnbNTs+q3zQ23B23/s=";
meta = with lib; {
description = "Language agnostic documentation generator";
mainProgram = "fundoc";
homepage = "https://github.com/daynin/fundoc";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}