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

32 lines
741 B
Nix
Raw Normal View History

2019-12-29 12:14:16 +00:00
{ stdenv, mkDerivation, fetchFromGitHub }:
2014-09-27 04:25:26 +01:00
2019-12-29 12:14:16 +00:00
mkDerivation (rec {
version = "1.5.0";
2019-12-29 12:14:16 +00:00
pname = "iowa-stdlib";
2014-09-27 04:25:26 +01:00
2018-10-12 22:20:19 +01:00
src = fetchFromGitHub {
owner = "cedille";
repo = "ial";
rev = "v${version}";
sha256 = "0dlis6v6nzbscf713cmwlx8h9n2gxghci8y21qak3hp18gkxdp0g";
2014-09-27 04:25:26 +01:00
};
2019-12-29 12:14:16 +00:00
libraryFile = "";
libraryName = "IAL-1.3";
2014-09-27 04:25:26 +01:00
buildPhase = ''
patchShebangs find-deps.sh
2014-09-27 04:25:26 +01:00
make
'';
meta = {
homepage = "https://svn.divms.uiowa.edu/repos/clc/projects/agda/lib/";
description = "Agda standard library developed at Iowa";
2014-09-27 04:25:26 +01:00
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.unix;
2020-03-21 11:58:44 +00:00
# broken since Agda 2.6.1
broken = true;
2019-12-29 12:14:16 +00:00
maintainers = with stdenv.lib.maintainers; [ alexarice ];
2014-09-27 04:25:26 +01:00
};
})