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
35 lines
699 B
Nix
35 lines
699 B
Nix
{
|
|
build-idris-package,
|
|
fetchFromGitHub,
|
|
contrib,
|
|
effects,
|
|
lib,
|
|
}:
|
|
build-idris-package {
|
|
pname = "wyvern";
|
|
version = "2017-06-26";
|
|
|
|
idrisDeps = [
|
|
contrib
|
|
effects
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ericqweinstein";
|
|
repo = "wyvern";
|
|
rev = "b9e3e5747c5b23608c6ed5e2ccf43b86caa04292";
|
|
sha256 = "0zihf95w7i0903zy1mzn1ldn697nf57yl80nl32dpgji72h98kh2";
|
|
};
|
|
|
|
postUnpack = ''
|
|
sed -i "s/Wyvern.Core/Wyvern.Main/g" source/src/Wyvern.idr
|
|
'';
|
|
|
|
meta = {
|
|
description = "Little web server written in Idris";
|
|
homepage = "https://github.com/ericqweinstein/wyvern";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|