biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / graphics / svgbob / default.nix
blob7789148c1502a06abb31a7a2e7c01afddecca760
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "svgbob";
5   version = "0.7.2";
7   src = fetchCrate {
8     inherit version;
9     crateName = "svgbob_cli";
10     hash = "sha256-QWDi6cpADm5zOzz8hXuqOBtVrqb0DteWmiDXC6PsLS4=";
11   };
13   cargoHash = "sha256-Fj1qjG4SKlchUWW4q0tBC+9fHFFuY6MHngJCFz6J5JY=";
15   postInstall = ''
16     mv $out/bin/svgbob_cli $out/bin/svgbob
17   '';
19   meta = with lib; {
20     description = "Convert your ascii diagram scribbles into happy little SVG";
21     homepage = "https://github.com/ivanceras/svgbob";
22     changelog = "https://github.com/ivanceras/svgbob/raw/${version}/Changelog.md";
23     license = licenses.asl20;
24     maintainers = with maintainers; [ cafkafk ];
25     mainProgram = "svgbob";
26   };