biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / seehecht / default.nix
blob0b1fb3bcef72dbe53cc1ccce353568296c4dc979
1 { lib, rustPlatform, fetchFromGitea }:
3 rustPlatform.buildRustPackage rec {
4   pname = "seehecht";
5   version = "3.0.3";
7   src = fetchFromGitea {
8     domain = "codeberg.org";
9     owner = "annaaurora";
10     repo = "seehecht";
11     rev = "v${version}";
12     hash = "sha256-KIxK0JYfq/1Bn4LOn+LzWPBUvGYMvOEuqS7GMpDRvW0=";
13   };
15   cargoHash = "sha256-AeVUVF4SBS9FG0iezLBKUm4Uk1PPRXPTON93evgL9IA=";
17   postInstall = ''
18     ln -s $out/bin/seh $out/bin/seehecht
19   '';
21   meta = with lib; {
22     description = "Tool to quickly open a markdown document with already filled out frontmatter";
23     license = licenses.lgpl3Only;
24     platforms = platforms.all;
25     maintainers = with maintainers; [ annaaurora ];
26   };