nixpkgs-suyu/pkgs/development/libraries/agda/iowa-stdlib/default.nix

32 lines
722 B
Nix
Raw Normal View History

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 {
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}";
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 = ''
patchShebangs find-deps.sh
2014-09-27 05:25:26 +02:00
make
'';
meta = {
homepage = "https://github.com/cedille/ial";
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
};
})