nixpkgs/pkgs/development/idris-modules/build-idris-package.nix

42 lines
897 B
Nix
Raw Normal View History

2015-11-27 18:17:17 +00:00
# Build an idris package
#
# args: Additional arguments to pass to mkDerivation. Generally should include at least
# name and src.
{ stdenv, idris, gmp }: args: stdenv.mkDerivation ({
preHook = ''
2017-08-23 00:49:25 +00:00
# Library import path
export IDRIS_LIBRARY_PATH=$PWD/idris-libs
2017-08-23 00:49:25 +00:00
mkdir -p $IDRIS_LIBRARY_PATH
# Library install path
export IBCSUBDIR=$out/lib/${idris.name}
mkdir -p $IBCSUBDIR
addIdrisLibs () {
if [ -d $1/lib/${idris.name} ]; then
ln -sv $1/lib/${idris.name}/* $IDRIS_LIBRARY_PATH
fi
}
envHooks+=(addIdrisLibs)
'';
buildPhase = ''
${idris}/bin/idris --build *.ipkg
'';
doCheck = true;
checkPhase = ''
if grep -q test *.ipkg; then
${idris}/bin/idris --testpkg *.ipkg
fi
'';
installPhase = ''
2017-08-23 00:49:25 +00:00
${idris}/bin/idris --install *.ipkg --ibcsubdir $IBCSUBDIR
'';
2015-11-27 16:03:04 +00:00
buildInputs = [ gmp ];
2015-11-27 18:17:17 +00:00
} // args)