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
26 lines
567 B
Nix
26 lines
567 B
Nix
{
|
|
build-idris-package,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
build-idris-package {
|
|
pname = "posix";
|
|
version = "2017-11-18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "idris-hackers";
|
|
repo = "idris-posix";
|
|
rev = "1e4787bc4dfcf901f2e1858e5334a6bafa5d27c4";
|
|
sha256 = "14y51vn18v23k56gi3b33rjjwpf02qfb00w8cfy8qycrl8rbgsmb";
|
|
};
|
|
|
|
# tests need file permissions
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "System POSIX bindings for Idris";
|
|
homepage = "https://github.com/idris-hackers/idris-posix";
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|