13 lines
216 B
Nix
13 lines
216 B
Nix
{ gf-core
|
|
, stdenv
|
|
, autoreconfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gf-pgf";
|
|
inherit (gf-core) version meta;
|
|
src = "${gf-core.src}/src/runtime/c";
|
|
nativeBuildInputs = [autoreconfHook ];
|
|
broken = true;
|
|
}
|