mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
947e7d80b4
The main two changes are 1. Completely rewrite how with-packages works to remove use of envHooks 2. The package description is now an idris specific set rather than being a subset of the arguments to mkDerivation. This mirrors the way Haskell packages are treated.
47 lines
987 B
Nix
47 lines
987 B
Nix
# Build an idris package
|
|
{ stdenv, idrisPackages, gmp }:
|
|
{ idrisDeps ? []
|
|
, name
|
|
, version
|
|
, src
|
|
, meta
|
|
, extraBuildInputs ? []
|
|
, postUnpack ? ""
|
|
, doCheck ? true
|
|
}:
|
|
let
|
|
idris-with-packages = idrisPackages.with-packages idrisDeps;
|
|
in
|
|
stdenv.mkDerivation ({
|
|
|
|
name = "${name}-${version}";
|
|
|
|
inherit postUnpack src doCheck meta;
|
|
|
|
|
|
# Some packages use the style
|
|
# opts = -i ../../path/to/package
|
|
# rather than the declarative pkgs attribute so we have to rewrite the path.
|
|
postPatch = ''
|
|
sed -i *.ipkg -e "/^opts/ s|-i \\.\\./|-i ${idris-with-packages}/libs/|g"
|
|
'';
|
|
|
|
buildPhase = ''
|
|
${idris-with-packages}/bin/idris --build *.ipkg
|
|
'';
|
|
|
|
checkPhase = ''
|
|
if grep -q test *.ipkg; then
|
|
${idris-with-packages}/bin/idris --testpkg *.ipkg
|
|
fi
|
|
'';
|
|
|
|
installPhase = ''
|
|
${idris-with-packages}/bin/idris --install *.ipkg --ibcsubdir $out/libs
|
|
'';
|
|
|
|
buildInputs = [ gmp ] ++ extraBuildInputs;
|
|
|
|
propagatedBuildInputs = idrisDeps;
|
|
})
|