2019-12-29 13:14:16 +01:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitHub }:
|
2014-09-27 05:25:26 +02:00
|
|
|
|
2019-12-29 13:14:16 +01:00
|
|
|
mkDerivation (rec {
|
2019-08-20 16:32:20 +02:00
|
|
|
version = "1.5.0";
|
2019-12-29 13:14:16 +01:00
|
|
|
pname = "iowa-stdlib";
|
2014-09-27 05:25:26 +02:00
|
|
|
|
2018-10-12 23:20:19 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cedille";
|
|
|
|
repo = "ial";
|
|
|
|
rev = "v${version}";
|
2019-08-20 16:32:20 +02:00
|
|
|
sha256 = "0dlis6v6nzbscf713cmwlx8h9n2gxghci8y21qak3hp18gkxdp0g";
|
2014-09-27 05:25:26 +02:00
|
|
|
};
|
|
|
|
|
2019-12-29 13:14:16 +01:00
|
|
|
libraryFile = "";
|
|
|
|
libraryName = "IAL-1.3";
|
|
|
|
|
2014-09-27 05:25:26 +02:00
|
|
|
buildPhase = ''
|
2015-01-08 10:26:49 +01:00
|
|
|
patchShebangs find-deps.sh
|
2014-09-27 05:25:26 +02:00
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-05-02 22:25:18 +02:00
|
|
|
homepage = "https://github.com/cedille/ial";
|
2014-09-28 03:21:21 +02:00
|
|
|
description = "Agda standard library developed at Iowa";
|
2014-09-27 05:25:26 +02:00
|
|
|
license = stdenv.lib.licenses.free;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2020-03-21 12:58:44 +01:00
|
|
|
# broken since Agda 2.6.1
|
|
|
|
broken = true;
|
2020-05-14 21:50:00 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ alexarice turion ];
|
2014-09-27 05:25:26 +02:00
|
|
|
};
|
|
|
|
})
|