ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / md / mdsh / package.nix
blob8b482d7e714e73ed9ab3141f255f0ac8188fbdc7
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "mdsh";
5   version = "0.9.0";
7   src = fetchFromGitHub {
8     owner = "zimbatm";
9     repo = "mdsh";
10     rev = "v${version}";
11     hash = "sha256-vN8nFhbZgJIhFuFET9IOmdxT7uBKq/9X+TO9lZsDw6g=";
12   };
14   cargoHash = "sha256-0D1RSUJw7fszc9d4nrp+zCzr9l0xF4Ed8DbK5/O5bEY=";
16   meta = with lib; {
17     description = "Markdown shell pre-processor";
18     homepage = "https://github.com/zimbatm/mdsh";
19     license = with licenses; [ mit ];
20     maintainers = with maintainers; [ zimbatm ];
21     mainProgram = "mdsh";
22   };