220618ef9c
https://www.perl.com/article/saying-goodbye-to-search-cpan-org/ maybe one operation less ..with unifying recursiveUpdate and first // although not tested fix whitespace
18 lines
497 B
Nix
18 lines
497 B
Nix
{ stdenv, buildPerlPackage, fetchurl }:
|
|
|
|
buildPerlPackage rec {
|
|
name = "Graph-Easy-${version}";
|
|
version = "0.76";
|
|
src = fetchurl {
|
|
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz";
|
|
sha256 = "d4a2c10aebef663b598ea37f3aa3e3b752acf1fbbb961232c3dbe1155008d1fa";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Render/convert graphs in/from various formats";
|
|
license = licenses.gpl1;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.jensbin ];
|
|
};
|
|
}
|