2021-02-05 17:12:51 +00:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-05-15 21:57:56 +00:00
|
|
|
mkDerivation (rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
version = "1.5.0";
|
2020-05-15 21:57:56 +00:00
|
|
|
pname = "iowa-stdlib";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cedille";
|
|
|
|
repo = "ial";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0dlis6v6nzbscf713cmwlx8h9n2gxghci8y21qak3hp18gkxdp0g";
|
|
|
|
};
|
|
|
|
|
2020-05-15 21:57:56 +00:00
|
|
|
libraryFile = "";
|
|
|
|
libraryName = "IAL-1.3";
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildPhase = ''
|
|
|
|
patchShebangs find-deps.sh
|
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-05-15 21:57:56 +00:00
|
|
|
homepage = "https://github.com/cedille/ial";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Agda standard library developed at Iowa";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = lib.licenses.free;
|
|
|
|
platforms = lib.platforms.unix;
|
2020-05-15 21:57:56 +00:00
|
|
|
# broken since Agda 2.6.1
|
|
|
|
broken = true;
|
2021-02-05 17:12:51 +00:00
|
|
|
maintainers = with lib.maintainers; [ alexarice turion ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
})
|