2016-06-27 21:30:52 +01:00
|
|
|
{ stdenv, fetchFromGitHub, ncurses }:
|
2015-02-05 20:51:45 +00:00
|
|
|
|
2015-06-27 18:40:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-14 16:18:52 +01:00
|
|
|
version = "1.0.15";
|
2015-06-27 18:40:56 +01:00
|
|
|
name = "mdp-${version}";
|
2015-02-05 20:51:45 +00:00
|
|
|
|
2016-06-27 21:30:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "visit1985";
|
|
|
|
repo = "mdp";
|
|
|
|
rev = version;
|
2018-10-14 16:18:52 +01:00
|
|
|
sha256 = "1m9a0vvyw2m55cn7zcq011vrjkiaj5a3g5g6f2dpq953gyi7gff9";
|
2015-02-05 20:51:45 +00:00
|
|
|
};
|
|
|
|
|
2016-06-27 21:30:52 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-02-05 20:51:45 +00:00
|
|
|
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2015-06-27 18:41:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-02-05 20:51:45 +00:00
|
|
|
homepage = https://github.com/visit1985/mdp;
|
|
|
|
description = "A command-line based markdown presentation tool";
|
2018-04-06 09:57:19 +01:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2015-06-27 18:41:11 +01:00
|
|
|
license = licenses.gpl3;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2015-02-05 20:51:45 +00:00
|
|
|
};
|
|
|
|
}
|