about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/om4/default.nix
blob: 4425ae52fb5fcfa745a6a23b9ada1ce39d1a3365 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 = [ ];
  };
}