nixpkgs/pkgs/applications/editors/mg/default.nix

32 lines
828 B
Nix
Raw Normal View History

2017-09-25 12:00:48 +00:00
{ stdenv, fetchurl, pkgconfig, libbsd, ncurses }:
2013-07-30 13:53:00 +00:00
stdenv.mkDerivation rec {
name = "mg-${version}";
version = "20171014";
2013-07-30 13:53:00 +00:00
src = fetchurl {
url = "http://homepage.boetes.org/software/mg/${name}.tar.gz";
sha256 = "0hakfikzsml7z0hja8m8mcahrmfy2piy81bq9nccsjplyfc9clai";
2013-07-30 13:53:00 +00:00
};
2017-09-25 12:00:48 +00:00
enableParallelBuilding = true;
makeFlags = [ "PKG_CONFIG=${pkgconfig}/bin/pkg-config" ];
2013-07-30 13:53:00 +00:00
installPhase = ''
2017-09-25 12:00:48 +00:00
install -m 555 -Dt $out/bin mg
install -m 444 -Dt $out/share/man/man1 mg.1
2013-07-30 13:53:00 +00:00
'';
nativeBuildInputs = [ pkgconfig ];
2017-09-25 12:00:48 +00:00
buildInputs = [ libbsd ncurses ];
2013-07-30 13:53:00 +00:00
meta = with stdenv.lib; {
description = "Micro GNU/emacs, a portable version of the mg maintained by the OpenBSD team";
2017-09-25 12:00:48 +00:00
homepage = "https://homepage.boetes.org/software/mg";
license = licenses.publicDomain;
platforms = platforms.all;
2013-07-30 13:53:00 +00:00
};
}