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
31 lines
702 B
Nix
31 lines
702 B
Nix
{
|
|
build-idris-package,
|
|
fetchFromGitLab,
|
|
lightyear,
|
|
lib,
|
|
}:
|
|
build-idris-package {
|
|
pname = "graphviz";
|
|
version = "2017-01-16";
|
|
|
|
idrisDeps = [ lightyear ];
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "mgttlinger";
|
|
repo = "idris-graphviz";
|
|
rev = "805da92ac888530134c3b4090fae0d025d86bb05";
|
|
sha256 = "12kzgjlwq6adflfc5zxpgjnaiszhiab6dcp878ysbz3zr2sihljx";
|
|
};
|
|
|
|
postUnpack = ''
|
|
sed -i "/^author /cauthor = Merlin Goettlinger" source/graphviz.ipkg
|
|
'';
|
|
|
|
meta = {
|
|
description = "Parser and library for graphviz dot files";
|
|
homepage = "https://gitlab.com/mgttlinger/idris-graphviz";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|