Merge pull request #74989 from bcdarwin/plplot

plplot: init at 5.15.0
This commit is contained in:
Mario Rodas 2020-01-07 21:15:06 -05:00 committed by GitHub
commit 4d77c4a770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
pname = "plplot";
version = "5.15.0";
src = fetchurl {
url = "https://downloads.sourceforge.net/project/${pname}/${pname}/${version}%20Source/${pname}-${version}.tar.gz";
sha256 = "0ywccb6bs1389zjfmc9zwdvdsvlpm7vg957whh6b5a96yvcf8bdr";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" "-DBUILD_TEST=ON" ];
doCheck = true;
meta = with stdenv.lib; {
description = "Cross-platform scientific graphics plotting library";
homepage = "https://plplot.org";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
license = licenses.lgpl2;
};
}

View File

@ -3868,6 +3868,8 @@ in
pixz = callPackage ../tools/compression/pixz { }; pixz = callPackage ../tools/compression/pixz { };
plplot = callPackage ../development/libraries/plplot { };
pxattr = callPackage ../tools/archivers/pxattr { }; pxattr = callPackage ../tools/archivers/pxattr { };
pxz = callPackage ../tools/compression/pxz { }; pxz = callPackage ../tools/compression/pxz { };