mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #34903 from jensbin/graph-easy_0.76
graph-easy: init at 0.76
This commit is contained in:
commit
34fa5d2d80
2 changed files with 20 additions and 0 deletions
18
pkgs/tools/graphics/graph-easy/default.nix
Normal file
18
pkgs/tools/graphics/graph-easy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue