Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 rustPlatform,
3 fetchCrate,
4 lib,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "cargo-gra";
9 version = "0.6.2";
10
11 src = fetchCrate {
12 inherit pname version;
13 hash = "sha256-JbBcpp/E3WlQrwdxMsbSdmIEnDTQj/1XDwAWJsniRu0=";
14 };
15
16 cargoHash = "sha256-B32GCIlFngfubwZqxMneAO24hhJ1zOgW6gXMHzgr89A=";
17
18 meta = {
19 description = "CLI for building flatpak apps with ease";
20 homepage = "https://gitlab.com/floers/gtk-stuff/cargo-gra/";
21 license = lib.licenses.gpl3Plus;
22 maintainers = with lib.maintainers; [ bot-wxt1221 ];
23 platforms = lib.platforms.unix;
24 };
25}