summary refs log tree commit diff
path: root/pkgs/applications/misc/mdp
diff options
context:
space:
mode:
authorFrederic LeBel <frederic.lebel@gmail.com>2015-02-05 15:51:45 -0500
committerFrederic LeBel <frederic.lebel@gmail.com>2015-02-05 21:04:33 -0500
commit1e509d011d9441eeb83cc5ebf55b5afe0606b5d8 (patch)
tree7e2c3974cabae5ee7c47bc02ec2c8e3e29ff1597 /pkgs/applications/misc/mdp
parent8921a8f53b1f48354403c7c8174cbf4f6f0fb91d (diff)
downloadnixlib-1e509d011d9441eeb83cc5ebf55b5afe0606b5d8.tar
nixlib-1e509d011d9441eeb83cc5ebf55b5afe0606b5d8.tar.gz
nixlib-1e509d011d9441eeb83cc5ebf55b5afe0606b5d8.tar.bz2
nixlib-1e509d011d9441eeb83cc5ebf55b5afe0606b5d8.tar.lz
nixlib-1e509d011d9441eeb83cc5ebf55b5afe0606b5d8.tar.xz
nixlib-1e509d011d9441eeb83cc5ebf55b5afe0606b5d8.tar.zst
nixlib-1e509d011d9441eeb83cc5ebf55b5afe0606b5d8.zip
Added mdp-0.93
A command-line based markdown presentation tool.
Diffstat (limited to 'pkgs/applications/misc/mdp')
-rw-r--r--pkgs/applications/misc/mdp/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/misc/mdp/default.nix b/pkgs/applications/misc/mdp/default.nix
new file mode 100644
index 000000000000..2e94414235db
--- /dev/null
+++ b/pkgs/applications/misc/mdp/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchFromGitHub, ncurses }:
+
+stdenv.mkDerivation {
+  name = "mdp-0.93";
+
+  src = fetchFromGitHub {
+    owner = "visit1985";
+    repo = "mdp";
+    rev = "09d6bd1a8a33fac75a999f0822ec10cb77fbc072";
+    sha256 = "0ksa0zqzv1yb8nspxp2vww7bp9y99pcma1vx3cixd3qb5y5ljn1n";
+  };
+
+  makeFlags = "PREFIX=$(out)";
+
+  buildInputs = [ ncurses ];
+
+  meta = {
+    homepage = https://github.com/visit1985/mdp;
+    description = "A command-line based markdown presentation tool";
+  };
+}