Skip to content

Commit

Permalink
Merge pull request #312464 from luftmensch-luftmensch/cargo-features-…
Browse files Browse the repository at this point in the history
…manager_0.8.0

cargo-features-manager: init at 0.8.0
  • Loading branch information
RaghavSood authored May 18, 2024
2 parents 6117d3d + 65b6776 commit 63d3e5d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/by-name/ca/cargo-features-manager/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-features-manager";
version = "0.8.0";

src = fetchFromGitHub {
owner = "ToBinio";
repo = "cargo-features-manager";
rev = "v${version}";
hash = "sha256-ez8WIDHV6/f0Kk6cvzB25LoYBPT+JTzmOWrSxXXzpBc=";
};

cargoHash = "sha256-G1MBH4c9b/h87QgCleTMnndjWc70KZI+6W4KWaxk28o=";

meta = {
description = "A command-line tool for managing Architectural Decision Records";
homepage = "https://github.com/ToBinio/cargo-features-manager";
changelog = "https://github.com/ToBinio/cargo-features-manager/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
mainProgram = "cargo-features-manager";
};
}

0 comments on commit 63d3e5d

Please sign in to comment.