2018-10-12 23:20:19 +02:00
|
|
|
{ stdenv, agda, fetchFromGitHub }:
|
2014-09-27 05:25:26 +02:00
|
|
|
|
|
|
|
agda.mkDerivation (self: rec {
|
2019-08-20 16:32:20 +02:00
|
|
|
version = "1.5.0";
|
2014-09-28 03:21:21 +02:00
|
|
|
name = "agda-iowa-stdlib-${version}";
|
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
|
|
|
};
|
|
|
|
|
|
|
|
sourceDirectories = [ "./." ];
|
|
|
|
buildPhase = ''
|
2015-01-08 10:26:49 +01:00
|
|
|
patchShebangs find-deps.sh
|
2014-09-27 05:25:26 +02:00
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://svn.divms.uiowa.edu/repos/clc/projects/agda/lib/";
|
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;
|
2019-12-05 08:29:48 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2014-09-27 05:25:26 +02:00
|
|
|
};
|
|
|
|
})
|