1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/documentation/mdsh/default.nix

23 lines
583 B
Nix
Raw Normal View History

2019-02-17 10:18:04 +00:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
2019-08-31 12:41:23 +01:00
pname = "mdsh";
2020-05-08 22:25:31 +01:00
version = "0.5.0";
2019-02-17 10:18:04 +00:00
src = fetchFromGitHub {
owner = "zimbatm";
repo = "mdsh";
rev = "v${version}";
2020-06-01 09:59:41 +01:00
sha256 = "02xslf5ssmyklbfsif2d7yk5aaz08n5w0dqiid6v4vlr2mkqcpjl";
2019-02-17 10:18:04 +00:00
};
2020-06-01 09:59:41 +01:00
cargoSha256 = "118ykkqlf0x6gcgywx4pg3qawfhfr5q5f51gvrw9s302c1lmgk3g";
2019-02-17 10:18:04 +00:00
meta = with stdenv.lib; {
description = "Markdown shell pre-processor";
2020-03-05 08:39:15 +00:00
homepage = "https://github.com/zimbatm/mdsh";
2019-02-17 10:18:04 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ zimbatm ];
};
}