Some checks failed
Build and populate cache / tests (sydpkgs, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixpkgs-unstable.tar.gz, sydpkgs) (push) Has been cancelled
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 ];
|
|
}
|