nixpkgs/pkgs/by-name/ca/cargo-gra/package.nix
2024-11-15 19:57:30 +01:00

26 lines
601 B
Nix

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