tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
plplot: init at 5.15.0
Ben Darwin
6 years ago
e85fe013
5a3dcb53
+27
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
plplot
default.nix
top-level
all-packages.nix
+25
pkgs/development/libraries/plplot/default.nix
reviewed
···
1
1
+
{ stdenv, fetchurl, cmake }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
pname = "plplot";
5
5
+
version = "5.15.0";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "https://downloads.sourceforge.net/project/${pname}/${pname}/${version}%20Source/${pname}-${version}.tar.gz";
9
9
+
sha256 = "0ywccb6bs1389zjfmc9zwdvdsvlpm7vg957whh6b5a96yvcf8bdr";
10
10
+
};
11
11
+
12
12
+
nativeBuildInputs = [ cmake ];
13
13
+
14
14
+
cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" "-DBUILD_TEST=ON" ];
15
15
+
16
16
+
doCheck = true;
17
17
+
18
18
+
meta = with stdenv.lib; {
19
19
+
description = "Cross-platform scientific graphics plotting library";
20
20
+
homepage = "https://plplot.org";
21
21
+
maintainers = with maintainers; [ bcdarwin ];
22
22
+
platforms = platforms.unix;
23
23
+
license = licenses.lgpl2;
24
24
+
};
25
25
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
3817
3817
3818
3818
pixz = callPackage ../tools/compression/pixz { };
3819
3819
3820
3820
+
plplot = callPackage ../development/libraries/plplot { };
3821
3821
+
3820
3822
pxattr = callPackage ../tools/archivers/pxattr { };
3821
3823
3822
3824
pxz = callPackage ../tools/compression/pxz { };