mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
3de6e5be50
Conflicts: pkgs/applications/misc/navit/default.nix pkgs/applications/networking/mailreaders/alpine/default.nix pkgs/applications/networking/mailreaders/realpine/default.nix pkgs/development/compilers/ghc/head.nix pkgs/development/libraries/openssl/default.nix pkgs/games/liquidwar/default.nix pkgs/games/spring/springlobby.nix pkgs/os-specific/linux/kernel/perf.nix pkgs/servers/sip/freeswitch/default.nix pkgs/tools/archivers/cromfs/default.nix pkgs/tools/graphics/plotutils/default.nix
57 lines
1.8 KiB
Nix
57 lines
1.8 KiB
Nix
{ fetchurl, stdenv, libpng }:
|
|
|
|
# debian splits this package into plotutils and libplot2c2
|
|
|
|
# gentoo passes X, this package contains fonts
|
|
# I'm only interested in making pstoedit convert to svg
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "plotutils-2.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/plotutils/${name}.tar.gz";
|
|
sha256 = "1arkyizn5wbgvbh53aziv3s6lmd3wm9lqzkhxb3hijlp1y124hjg";
|
|
};
|
|
|
|
buildInputs = [ libpng ];
|
|
|
|
# disable failing test on i686
|
|
# https://lists.gnu.org/archive/html/bug-plotutils/2016-04/msg00002.html
|
|
prePatch = stdenv.lib.optionalString stdenv.isi686 ''
|
|
substituteInPlace test/Makefile.in --replace 'spline.test' ' '
|
|
'';
|
|
|
|
patches = map fetchurl (import ./debian-patches.nix);
|
|
|
|
configureFlags = "--enable-libplotter"; # required for pstoedit
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Powerful C/C++ library for exporting 2D vector graphics";
|
|
|
|
longDescription =
|
|
'' The GNU plotutils package contains software for both programmers and
|
|
technical users. Its centerpiece is libplot, a powerful C/C++
|
|
function library for exporting 2-D vector graphics in many file
|
|
formats, both vector and raster. It can also do vector graphics
|
|
animations.
|
|
|
|
libplot is device-independent in the sense that its API (application
|
|
programming interface) does not depend on the type of graphics file
|
|
to be exported.
|
|
|
|
Besides libplot, the package contains command-line programs for
|
|
plotting scientific data. Many of them use libplot to export
|
|
graphics.
|
|
'';
|
|
|
|
homepage = http://www.gnu.org/software/plotutils/;
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
platforms = stdenv.lib.platforms.gnu;
|
|
};
|
|
}
|