commit
0cc6444e74
2 changed files with 29 additions and 0 deletions
27
pkgs/development/tools/misc/om4/default.nix
Normal file
27
pkgs/development/tools/misc/om4/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue