3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/mdp/default.nix

23 lines
572 B
Nix
Raw Normal View History

2015-06-27 18:40:56 +01:00
{ stdenv, fetchurl, ncurses }:
2015-06-27 18:40:56 +01:00
stdenv.mkDerivation rec {
2015-07-19 11:43:05 +01:00
version = "1.0.1";
2015-06-27 18:40:56 +01:00
name = "mdp-${version}";
2015-06-27 18:40:56 +01:00
src = fetchurl {
url = "https://github.com/visit1985/mdp/archive/${version}.tar.gz";
2015-07-19 11:43:05 +01:00
sha256 = "0vmr0ymq06r50yags9nv6fk4f890b82a7bvxg697vrgs04i2x4dy";
};
makeFlags = "PREFIX=$(out)";
buildInputs = [ ncurses ];
2015-06-27 18:41:11 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/visit1985/mdp;
description = "A command-line based markdown presentation tool";
2015-06-27 18:41:11 +01:00
maintainers = with maintainers; [ matthiasbeyer ];
license = licenses.gpl3;
};
}