ed60f38a3b
Noticed as a build failure on `config.strictDepsByDefault = true`: configuring setup: line 86: autoconf: command not found
28 lines
682 B
Nix
28 lines
682 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";
|
|
platforms = platforms.all;
|
|
license = licenses.bsd2;
|
|
};
|
|
|
|
}
|