diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-10 21:48:36 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-10 22:00:38 +0200 |
commit | 770c9078faf9e5ea9e9dbbbd7573a5025c2f905f (patch) | |
tree | 39d1ca0805d144c5585a512518699d1cb16d11ee | |
parent | 7e311358afcf5501b66ba4b6ea30f3b1ad8bee99 (diff) |
gnu: Add perl-pdl-graphics-trid.
* gnu/packages/perl-maths.scm (perl-pdl-graphics-trid): New variable.
Change-Id: Ic094e51124a72c553dc3414ad6d1fb9a1e4836c3
-rw-r--r-- | gnu/packages/perl-maths.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/perl-maths.scm b/gnu/packages/perl-maths.scm index 5a87bc70b8..57eaf59101 100644 --- a/gnu/packages/perl-maths.scm +++ b/gnu/packages/perl-maths.scm @@ -219,3 +219,26 @@ Perl Data Language.") (description "This package provides a library and simple REPL for the Perl Data Language.") (license license:perl-license))) + +(define-public perl-pdl-graphics-trid + (package + (name "perl-pdl-graphics-trid") + (version "2.102") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PDLPorters/PDL-Graphics-TriD.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0c66337l3dkw70mqgldbih1xkyg082lalmaldb9k5058hq4jhqzl")))) + (build-system perl-build-system) + (inputs + (list mesa)) + (propagated-inputs + (list perl-pdl)) + (synopsis "3D graphics in Perl Data Language") + (description "This package provides modules to do 3D graphics in PDL.") + (home-page "https://github.com/PDLPorters/") + (license license:perl-license))) |