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 {
|
||||
name = "mdp-0.93";
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.0.0";
|
||||
name = "mdp-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "visit1985";
|
||||
repo = "mdp";
|
||||
rev = "09d6bd1a8a33fac75a999f0822ec10cb77fbc072";
|
||||
sha256 = "0ksa0zqzv1yb8nspxp2vww7bp9y99pcma1vx3cixd3qb5y5ljn1n";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/visit1985/mdp/archive/${version}.tar.gz";
|
||||
sha256 = "1xkmzcwa5ml1xfv92brwirnm00a44jkj7wpfimxbny98zgmad8vn";
|
||||
};
|
||||
|
||||
makeFlags = "PREFIX=$(out)";
|
||||
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/visit1985/mdp;
|
||||
description = "A command-line based markdown presentation tool";
|
||||
maintainers = with maintainers; [ matthiasbeyer ];
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user