1 { lib, stdenv, fetchFromGitHub, ncurses }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1m9a0vvyw2m55cn7zcq011vrjkiaj5a3g5g6f2dpq953gyi7gff9";
14 makeFlags = [ "PREFIX=$(out)" ];
16 buildInputs = [ ncurses ];
19 homepage = "https://github.com/visit1985/mdp";
20 description = "A command-line based markdown presentation tool";
21 maintainers = with maintainers; [ matthiasbeyer vrthra ];
22 license = licenses.gpl3;
23 platforms = with platforms; unix;