Merge pull request #185366 from ninjin/om4

om4: init at 6.7
This commit is contained in:
Sergei Trofimovich 2022-08-20 16:11:13 +01:00 committed by GitHub
commit 0cc6444e74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, bison, flex, lib }:
stdenv.mkDerivation rec {
pname = "om4";
version = "6.7";
src = fetchFromGitHub {
owner = "ibara";
repo = "m4";
rev = "${pname}-${version}";
sha256 = "04h76hxwb5rs3ylkw1dv8k0kmkzl84ccqlwdwxb6i0x57rrqbgzx";
};
strictDeps = true;
nativeBuildInputs = [ bison flex ];
configureFlags = [ "--enable-m4" ];
meta = with lib; {
description = "Portable OpenBSD m4 macro processor";
homepage = "https://github.com/ibara/m4";
license = with licenses; [ bsd2 bsd3 isc publicDomain ];
mainProgram = "m4";
platforms = platforms.unix;
maintainers = [ maintainers.ninjin ];
};
}

View file

@ -16193,6 +16193,8 @@ with pkgs;
gnum4 = callPackage ../development/tools/misc/gnum4 { };
m4 = gnum4;
om4 = callPackage ../development/tools/misc/om4 { };
gnumake = callPackage ../development/tools/build-managers/gnumake { };
gnumake42 = callPackage ../development/tools/build-managers/gnumake/4.2 { };