mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
adrs: init at 0.2.8
This commit is contained in:
parent
cdb768311c
commit
f0d5255deb
1 changed files with 26 additions and 0 deletions
26
pkgs/by-name/ad/adrs/package.nix
Normal file
26
pkgs/by-name/ad/adrs/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue