2018-10-12 14:20:19 -07:00
|
|
|
{ stdenv, agda, fetchFromGitHub }:
|
2014-09-26 20:25:26 -07:00
|
|
|
|
|
|
|
agda.mkDerivation (self: rec {
|
2019-08-20 07:32:20 -07:00
|
|
|
version = "1.5.0";
|
2014-09-27 18:21:21 -07:00
|
|
|
name = "agda-iowa-stdlib-${version}";
|
2014-09-26 20:25:26 -07:00
|
|
|
|
2018-10-12 14:20:19 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cedille";
|
|
|
|
repo = "ial";
|
|
|
|
rev = "v${version}";
|
2019-08-20 07:32:20 -07:00
|
|
|
sha256 = "0dlis6v6nzbscf713cmwlx8h9n2gxghci8y21qak3hp18gkxdp0g";
|
2014-09-26 20:25:26 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
sourceDirectories = [ "./." ];
|
|
|
|
buildPhase = ''
|
2015-01-08 01:26:49 -08:00
|
|
|
patchShebangs find-deps.sh
|
2014-09-26 20:25:26 -07:00
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://svn.divms.uiowa.edu/repos/clc/projects/agda/lib/;
|
2014-09-27 18:21:21 -07:00
|
|
|
description = "Agda standard library developed at Iowa";
|
2014-09-26 20:25:26 -07:00
|
|
|
license = stdenv.lib.licenses.free;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2019-12-04 23:29:48 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2014-09-26 20:25:26 -07:00
|
|
|
};
|
|
|
|
})
|