Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
718 B
Nix
39 lines
718 B
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
version = "1.5.0";
|
|
pname = "iowa-stdlib";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cedille";
|
|
repo = "ial";
|
|
rev = "v${version}";
|
|
sha256 = "0dlis6v6nzbscf713cmwlx8h9n2gxghci8y21qak3hp18gkxdp0g";
|
|
};
|
|
|
|
libraryFile = "";
|
|
libraryName = "IAL-1.3";
|
|
|
|
buildPhase = ''
|
|
patchShebangs find-deps.sh
|
|
make
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/cedille/ial";
|
|
description = "Agda standard library developed at Iowa";
|
|
license = lib.licenses.free;
|
|
platforms = lib.platforms.unix;
|
|
# broken since Agda 2.6.1
|
|
broken = true;
|
|
maintainers = with lib.maintainers; [
|
|
alexarice
|
|
turion
|
|
];
|
|
};
|
|
}
|