om4: init at 6.7

This commit is contained in:
Pontus Stenetorp 2022-08-06 05:04:09 +00:00
parent 5b54e94618
commit fcadb8a5da
No known key found for this signature in database
GPG key ID: D430287500E6483C
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 { };