biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / ograc / default.nix
blob83938a505316ad459c84cba6d59120e2d4ffa3ca
1 { fetchFromGitLab, lib, rustPlatform, }:
3 rustPlatform.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=";
14   meta = with lib; {
15     description = "like cargo, but backwards";
16     mainProgram = "ograc";
17     homepage = "https://crates.io/crates/ograc";
18     license = licenses.agpl3Plus;
19     maintainers = with maintainers; [ sciencentistguy ];
20   };