12 lines
199 B
Nix
12 lines
199 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 ];
|
|
}
|