ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ma / matugen / package.nix
blobb7e943c307144968902b30f3dc36af68a5384e6c
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "matugen";
9   version = "2.4.1";
11   src = fetchFromGitHub {
12     owner = "InioX";
13     repo = "matugen";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-+UibbVz5CTisKMms/5VXGe39FYr56qzaEtX4TWQPkjk=";
16   };
18   cargoHash = "sha256-/SUbmgdCy+3qpmu+cpNV+D/39jZ4jOzxgXegCHk9pHc=";
20   meta = {
21     description = "Material you color generation tool";
22     homepage = "https://github.com/InioX/matugen";
23     changelog = "https://github.com/InioX/matugen/blob/${src.rev}/CHANGELOG.md";
24     license = lib.licenses.gpl2Only;
25     maintainers = with lib.maintainers; [ lampros ];
26     mainProgram = "matugen";
27   };