Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
666 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "adrs";
version = "0.3.0";
src = fetchFromGitHub {
owner = "joshrotenberg";
repo = "adrs";
tag = "v${version}";
hash = "sha256-C9Kg7xY3Q0xsd2DlUcc3OM+/hyzmwz55oi6Ul3K7zkM=";
};
cargoHash = "sha256-Ep1Y2PDNesaDzEc2JNoKZjFSay1utZiNR5eQYhdqiUU=";
meta = {
description = "Command-line tool for managing Architectural Decision Records";
homepage = "https://github.com/joshrotenberg/adrs";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ dannixon ];
mainProgram = "adrs";
};
}