nixos/packages/v-sim.nix

22 lines
503 B
Nix
Raw Normal View History

2023-09-06 20:04:23 +08:00
{
2024-01-23 13:02:19 +08:00
stdenv, lib, src,
2023-09-06 20:04:23 +08:00
wrapGAppsHook, autoreconfHook, autoconf, libtool, intltool, gettext, automake, gtk-doc, pkg-config, gfortran, libxslt,
glib, gtk3, epoxy, libyaml
}:
stdenv.mkDerivation
{
2024-01-23 13:02:19 +08:00
name = "v-sim";
inherit src;
2023-09-06 20:04:23 +08:00
buildInputs = [ glib gtk3 epoxy libyaml ];
nativeBuildInputs =
[
autoreconfHook wrapGAppsHook autoconf libtool intltool gettext automake pkg-config
gtk-doc gfortran libxslt.bin
];
enableParallelBuilding = true;
postPatch =
''
./autogen.sh
'';
}