graph-easy: init at 0.76
This commit is contained in:
parent
02b8929b70
commit
3dacdf1dfd
|
@ -0,0 +1,18 @@
|
||||||
|
{ 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; {
|
||||||
|
homepage = http://search.cpan.org/~tels/Graph-Easy/bin/graph-easy;
|
||||||
|
description = "Render/convert graphs in/from various formats";
|
||||||
|
license = licenses.gpl1;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.jensbin ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -167,6 +167,8 @@ with pkgs;
|
||||||
|
|
||||||
fetchMavenArtifact = callPackage ../build-support/fetchmavenartifact { };
|
fetchMavenArtifact = callPackage ../build-support/fetchmavenartifact { };
|
||||||
|
|
||||||
|
graph-easy = callPackage ../tools/graphics/graph-easy { };
|
||||||
|
|
||||||
packer = callPackage ../development/tools/packer { };
|
packer = callPackage ../development/tools/packer { };
|
||||||
|
|
||||||
mht2htm = callPackage ../tools/misc/mht2htm { };
|
mht2htm = callPackage ../tools/misc/mht2htm { };
|
||||||
|
|
Loading…
Reference in New Issue