nixpkgs/pkgs/development/tools/tradcpp/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

29 lines
711 B
Nix

{ lib, stdenv, fetchurl, autoconf }:
stdenv.mkDerivation rec {
pname = "tradcpp";
version = "0.5.2";
src = fetchurl {
url = "https://ftp.netbsd.org/pub/NetBSD/misc/dholland/${pname}-${version}.tar.gz";
sha256 = "1h2bwxwc13rz3g2236l89hm47f72hn3m4h7wjir3j532kq0m68bc";
};
strictDeps = true;
# tradcpp only comes with BSD-make Makefile; the patch adds configure support
nativeBuildInputs = [ autoconf ];
preConfigure = "autoconf";
patches = [
./tradcpp-configure.patch
./aarch64.patch
];
meta = with lib; {
description = "A traditional (K&R-style) C macro preprocessor";
mainProgram = "tradcpp";
platforms = platforms.all;
license = licenses.bsd2;
};
}