summary refs log tree commit diff
path: root/pkgs/applications/editors/mg/default.nix
blob: de1a5ce7879faf4cfb3c5b7415658c6f3f81424c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, pkgconfig, libbsd, ncurses, buildPackages }:

stdenv.mkDerivation rec {
  pname = "mg";
  version = "20171014";

  src = fetchurl {
    url = "http://homepage.boetes.org/software/mg/${pname}-${version}.tar.gz";
    sha256 = "0hakfikzsml7z0hja8m8mcahrmfy2piy81bq9nccsjplyfc9clai";
  };

  enableParallelBuilding = true;

  makeFlags = [ "PKG_CONFIG=${buildPackages.pkgconfig}/bin/pkg-config" ];

  installPhase = ''
    install -m 555 -Dt $out/bin mg
    install -m 444 -Dt $out/share/man/man1 mg.1
  '';

  nativeBuildInputs = [ pkgconfig ];

  buildInputs = [ libbsd ncurses ];

  meta = with stdenv.lib; {
    description = "Micro GNU/emacs, a portable version of the mg maintained by the OpenBSD team";
    homepage = "https://homepage.boetes.org/software/mg";
    license = licenses.publicDomain;
    platforms = platforms.all;
  };
}