nixpkgs/pkgs/development/idris-modules/graphviz.nix

30 lines
696 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitLab
, lightyear
, lib
}:
build-idris-package {
name = "graphviz";
version = "2017-01-16";
2018-07-02 03:18:21 +00:00
idrisDeps = [ lightyear ];
2018-03-16 11:40:17 +00:00
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";
2018-03-16 11:40:17 +00:00
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.brainrape ];
};
}