summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/documentation
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2019-02-17 11:18:04 +0100
committerzimbatm <zimbatm@zimbatm.com>2019-02-17 11:18:04 +0100
commit4fad0de82ae4c9d8367f586bb50e9d936652294b (patch)
tree4375d50b65f7db42d0147c2300a39d87cd0fba3e /pkgs/development/tools/documentation
parentdcb68e3e1aa0fac0dfbf67ac662c409ca1b37834 (diff)
mdsh: init at 0.1.2
Diffstat (limited to 'pkgs/development/tools/documentation')
-rw-r--r--pkgs/development/tools/documentation/mdsh/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/tools/documentation/mdsh/default.nix b/pkgs/development/tools/documentation/mdsh/default.nix
new file mode 100644
index 000000000000..74cde43440be
--- /dev/null
+++ b/pkgs/development/tools/documentation/mdsh/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+ name = "mdsh-${version}";
+ version = "0.1.2";
+
+ src = fetchFromGitHub {
+ owner = "zimbatm";
+ repo = "mdsh";
+ rev = "v${version}";
+ sha256 = "0sggclzghm54g4wnbab00qw4ry49min4zyw3hjwi0v741aa51xb2";
+ };
+
+ cargoSha256 = "1hsnz4sj8kff9azcbw9pkr2ipxlymz4zcm4vhfwydfkdlvdncpxm";
+
+ meta = with stdenv.lib; {
+ description = "Markdown shell pre-processor";
+ homepage = https://github.com/zimbatm/mdsh;
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ zimbatm ];
+ platforms = platforms.all;
+ };
+}