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

35 lines
923 B
Nix
Raw Normal View History

{ fetchurl, stdenv, ncurses, pkgconfig, libbsd }:
2013-07-30 15:53:00 +02:00
stdenv.mkDerivation rec {
name = "mg-${version}";
version = "20161005";
2013-07-30 15:53:00 +02:00
src = fetchurl {
url = "http://homepage.boetes.org/software/mg/${name}.tar.gz";
sha256 = "0qaydk2cy765n9clghmi5gdnpwn15y2v0fj6r0jcm0v7d89vbz5p";
2013-07-30 15:53:00 +02:00
};
NIX_CFLAGS_COMPILE = "-Wno-error";
preConfigure = ''
substituteInPlace GNUmakefile \
--replace /usr/bin/pkg-config ${pkgconfig}/bin/pkg-config
'';
2013-07-30 15:53:00 +02:00
installPhase = ''
mkdir -p $out/bin
cp mg $out/bin
mkdir -p $out/share/man/man1
cp mg.1 $out/share/man/man1
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libbsd ];
2013-07-30 15:53:00 +02:00
meta = with stdenv.lib; {
2013-07-30 15:53:00 +02:00
homepage = http://homepage.boetes.org/software/mg/;
description = "Micro GNU/emacs, a portable version of the mg maintained by the OpenBSD team";
license = licenses.publicDomain;
platforms = platforms.all;
2013-07-30 15:53:00 +02:00
};
}