Merge pull request #8529 from matthiasbeyer/update-mdp
mdp: 0.93 -> 1.0.0
This commit is contained in:
commit
8c19ed81e9
@ -1,21 +1,22 @@
|
|||||||
{ stdenv, fetchFromGitHub, ncurses }:
|
{ stdenv, fetchurl, ncurses }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "mdp-0.93";
|
version = "1.0.0";
|
||||||
|
name = "mdp-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchurl {
|
||||||
owner = "visit1985";
|
url = "https://github.com/visit1985/mdp/archive/${version}.tar.gz";
|
||||||
repo = "mdp";
|
sha256 = "1xkmzcwa5ml1xfv92brwirnm00a44jkj7wpfimxbny98zgmad8vn";
|
||||||
rev = "09d6bd1a8a33fac75a999f0822ec10cb77fbc072";
|
|
||||||
sha256 = "0ksa0zqzv1yb8nspxp2vww7bp9y99pcma1vx3cixd3qb5y5ljn1n";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = "PREFIX=$(out)";
|
makeFlags = "PREFIX=$(out)";
|
||||||
|
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
meta = {
|
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 ];
|
||||||
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user