1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/mdp/default.nix
2016-02-16 14:17:28 +01:00

23 lines
572 B
Nix

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
version = "1.0.5";
name = "mdp-${version}";
src = fetchurl {
url = "https://github.com/visit1985/mdp/archive/${version}.tar.gz";
sha256 = "0ckd9k5571zc7pzxdx84gv8k103d5qp49f2i477a395fy2pnq4m8";
};
makeFlags = "PREFIX=$(out)";
buildInputs = [ ncurses ];
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;
};
}