Merge pull request #307037 from DanNixon/adrs

adrs: init at 0.2.8
This commit is contained in:
Pol Dellaiera 2024-05-12 21:34:19 +02:00 committed by GitHub
commit 96055eab60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "adrs";
version = "0.2.8";
src = fetchFromGitHub {
owner = "joshrotenberg";
repo = "adrs";
rev = "v${version}";
hash = "sha256-5rvdW2UntseSsKFndrDj9ogH/qYN+KymuOsuqS0/C3M=";
};
cargoHash = "sha256-WqsZ+ICfKrackQ5dMs/WvF3inJX+k9LhxAJkXmaVAtY=";
meta = {
description = "A 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";
};
}