summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics/graph-easy
diff options
context:
space:
mode:
authorJens Binkert <jensbin@protonmail.com>2018-02-14 19:53:05 +0100
committerJens Binkert <jensbin@protonmail.com>2018-02-14 19:53:05 +0100
commit3dacdf1dfd247c648e0efb20768b5b1464082728 (patch)
tree01a2fb96ffc92090617d6dba1e8153a7906d337b /pkgs/tools/graphics/graph-easy
parent02b8929b70fc119fd0ecfc6e3afd36b1f9382bce (diff)
graph-easy: init at 0.76
Diffstat (limited to 'pkgs/tools/graphics/graph-easy')
-rw-r--r--pkgs/tools/graphics/graph-easy/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/graph-easy/default.nix b/pkgs/tools/graphics/graph-easy/default.nix
new file mode 100644
index 000000000000..e505f0bb6db5
--- /dev/null
+++ b/pkgs/tools/graphics/graph-easy/default.nix
@@ -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 ];
+ };
+}