mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
31 lines
862 B
Nix
31 lines
862 B
Nix
{ lib, rustPlatform, fetchFromGitHub, stdenv, CoreServices }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "doctave";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "doctave";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1780pqvnlbxxhm7rynnysqr0vihdkwmc6rmgp43bmj1k18ar4qgj";
|
|
};
|
|
|
|
# Cargo.lock is outdated
|
|
cargoPatches = [ ./cargo-lock.patch ];
|
|
|
|
cargoHash = "sha256-keLcNttdM9JUnn3qi/bWkcObIHl3MRACDHKPSZuScOc=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
CoreServices
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Batteries-included developer documentation site generator";
|
|
homepage = "https://github.com/doctave/doctave";
|
|
changelog = "https://github.com/doctave/doctave/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "doctave";
|
|
};
|
|
}
|