nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

plplot: init at 5.15.0

+27
+25
pkgs/development/libraries/plplot/default.nix
··· 1 + { stdenv, fetchurl, cmake }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "plplot"; 5 + version = "5.15.0"; 6 + 7 + src = fetchurl { 8 + url = "https://downloads.sourceforge.net/project/${pname}/${pname}/${version}%20Source/${pname}-${version}.tar.gz"; 9 + sha256 = "0ywccb6bs1389zjfmc9zwdvdsvlpm7vg957whh6b5a96yvcf8bdr"; 10 + }; 11 + 12 + nativeBuildInputs = [ cmake ]; 13 + 14 + cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" "-DBUILD_TEST=ON" ]; 15 + 16 + doCheck = true; 17 + 18 + meta = with stdenv.lib; { 19 + description = "Cross-platform scientific graphics plotting library"; 20 + homepage = "https://plplot.org"; 21 + maintainers = with maintainers; [ bcdarwin ]; 22 + platforms = platforms.unix; 23 + license = licenses.lgpl2; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 3817 3817 3818 3818 pixz = callPackage ../tools/compression/pixz { }; 3819 3819 3820 + plplot = callPackage ../development/libraries/plplot { }; 3821 + 3820 3822 pxattr = callPackage ../tools/archivers/pxattr { }; 3821 3823 3822 3824 pxz = callPackage ../tools/compression/pxz { };