lol
1{ fetchFromGitLab, lib, rustPlatform, }:
2
3rustPlatform.buildRustPackage {
4 pname = "ograc";
5 version = "0.1.6";
6 src = fetchFromGitLab {
7 owner = "lirnril";
8 repo = "ograc";
9 rev = "d09b3102ff7a364bf2593589327a16a473bd4f25";
10 sha256 = "sha256-vdHPFY6zZ/OBNlJO3N/6YXcvlddw2wYHgFWI0yfSgVo=";
11 };
12 cargoSha256 = "sha256-HAeEd7HY+hbTUOkIt6aTfvPYLRPtdAcUGvkuBUMjohA=";
13
14 meta = with lib; {
15 description = "like cargo, but backwards";
16 homepage = "https://crates.io/crates/ograc";
17 license = licenses.agpl3Plus;
18 maintainers = with maintainers; [ sciencentistguy ];
19 };
20}
21