1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/agda/iowa-stdlib/default.nix

32 lines
698 B
Nix
Raw Normal View History

{ lib, 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://github.com/cedille/ial";
description = "Agda standard library developed at Iowa";
license = lib.licenses.free;
platforms = lib.platforms.unix;
2020-03-21 11:58:44 +00:00
# broken since Agda 2.6.1
broken = true;
maintainers = with lib.maintainers; [ alexarice turion ];
2014-09-27 04:25:26 +01:00
};
})