nixpkgs/pkgs/by-name/ca/cargo-gra/package.nix

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

26 lines
601 B
Nix
Raw Normal View History

2024-11-05 11:22:34 +00:00
{
rustPlatform,
fetchCrate,
lib,
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-gra";
2024-11-15 18:57:12 +00:00
version = "0.6.2";
2024-11-05 11:22:34 +00:00
src = fetchCrate {
inherit pname version;
2024-11-15 18:57:12 +00:00
hash = "sha256-JbBcpp/E3WlQrwdxMsbSdmIEnDTQj/1XDwAWJsniRu0=";
2024-11-05 11:22:34 +00:00
};
2024-11-15 18:57:12 +00:00
cargoHash = "sha256-wfMiqWcEsL6/d6XFnEFm/lCbelU7BHC7JKdHREnynAU=";
2024-11-05 11:22:34 +00:00
meta = {
2024-11-15 18:57:30 +00:00
description = "gtk-rust-app cli for building flatpak apps with ease";
2024-11-05 11:22:34 +00:00
homepage = "https://gitlab.com/floers/gtk-stuff/cargo-gra/";
2024-11-15 18:57:30 +00:00
license = lib.licenses.gpl3Plus;
2024-11-05 11:22:34 +00:00
maintainers = with lib.maintainers; [ bot-wxt1221 ];
platforms = lib.platforms.unix;
};
}