commit
e4f49533d2
|
@ -1,22 +1,24 @@
|
||||||
{ stdenv, fetchurl, ncurses }:
|
{ stdenv, fetchFromGitHub, ncurses }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.0.6";
|
version = "1.0.7";
|
||||||
name = "mdp-${version}";
|
name = "mdp-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/visit1985/mdp/archive/${version}.tar.gz";
|
owner = "visit1985";
|
||||||
sha256 = "1m6qbqr9kfj27qf27gkgqr1jpf7z0xym71w61pnjwsmcryp0db19";
|
repo = "mdp";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "10jkv8g04vvhik42y0qqcbn05hlnfsgbljhx69hx1sfn7js2d8g4";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = "PREFIX=$(out)";
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/visit1985/mdp;
|
homepage = https://github.com/visit1985/mdp;
|
||||||
description = "A command-line based markdown presentation tool";
|
description = "A command-line based markdown presentation tool";
|
||||||
maintainers = with maintainers; [ matthiasbeyer ];
|
maintainers = with maintainers; [ matthiasbeyer vrthra ];
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue