Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
718 B
Nix
37 lines
718 B
Nix
{
|
|
build-idris-package,
|
|
fetchFromGitHub,
|
|
idrisscript,
|
|
hrtime,
|
|
webgl,
|
|
lib,
|
|
}:
|
|
build-idris-package {
|
|
pname = "html";
|
|
version = "2017-04-23";
|
|
|
|
idrisDeps = [
|
|
idrisscript
|
|
hrtime
|
|
webgl
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pierrebeaucamp";
|
|
repo = "idris-html";
|
|
rev = "f59ecc560d7008ba26dda83f11319bb24ed6c508";
|
|
sha256 = "0r2clvkyld3y3r6smkfb7s47qnndikwds3bx9hphidbn41wjnh0i";
|
|
};
|
|
|
|
postUnpack = ''
|
|
sed -i "s/hrTime/hrtime/g" source/html.ipkg
|
|
'';
|
|
|
|
meta = {
|
|
description = "Idris library to interact with HTML";
|
|
homepage = "https://github.com/pierrebeaucamp/idris-html";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|