1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #34903 from jensbin/graph-easy_0.76

graph-easy: init at 0.76
This commit is contained in:
Joachim F 2018-02-15 14:56:54 +00:00 committed by GitHub
commit 34fa5d2d80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -171,6 +171,8 @@ with pkgs;
fetchMavenArtifact = callPackage ../build-support/fetchmavenartifact { };
graph-easy = callPackage ../tools/graphics/graph-easy { };
packer = callPackage ../development/tools/packer { };
mht2htm = callPackage ../tools/misc/mht2htm { };