Merge pull request #85627 from druimalban/mg-darwin

This commit is contained in:
Jörg Thalheim 2020-05-11 10:46:05 +01:00 committed by GitHub
commit e9853444c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,14 @@
{ stdenv, fetchurl, pkgconfig, libbsd, ncurses, buildPackages }: { stdenv, fetchFromGitHub, pkgconfig, ncurses, buildPackages }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "mg"; pname = "mg";
version = "20171014"; version = "6.7";
src = fetchurl { src = fetchFromGitHub {
url = "http://homepage.boetes.org/software/mg/${pname}-${version}.tar.gz"; owner = "ibara";
sha256 = "0hakfikzsml7z0hja8m8mcahrmfy2piy81bq9nccsjplyfc9clai"; repo = "mg";
rev = "mg-6.7";
sha256 = "15adwibq6xrfxbrxzk765g9250iyfn4wbcxd7kcsabiwn6apm0ai";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
@ -17,14 +19,13 @@ stdenv.mkDerivation rec {
install -m 555 -Dt $out/bin mg install -m 555 -Dt $out/bin mg
install -m 444 -Dt $out/share/man/man1 mg.1 install -m 444 -Dt $out/share/man/man1 mg.1
''; '';
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libbsd ncurses ]; buildInputs = [ ncurses ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Micro GNU/emacs, a portable version of the mg maintained by the OpenBSD team"; description = "Micro GNU/emacs, a portable version of the mg maintained by the OpenBSD team";
homepage = "https://homepage.boetes.org/software/mg"; homepage = "https://man.openbsd.org/OpenBSD-current/man1/mg.1";
license = licenses.publicDomain; license = licenses.publicDomain;
platforms = platforms.all; platforms = platforms.all;
}; };