nixpkgs/pkgs/tools/graphics/feedgnuplot/default.nix

57 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, makeWrapper, gawk
2018-06-27 19:22:20 +00:00
, makeFontsConf, freefont_ttf, gnuplot, perl, perlPackages
}:
let
fontsConf = makeFontsConf { fontDirectories = [ freefont_ttf ]; };
in
perlPackages.buildPerlPackage rec {
pname = "feedgnuplot";
2018-10-01 15:38:27 +00:00
version = "1.51";
2018-06-27 19:22:20 +00:00
src = fetchFromGitHub {
owner = "dkogan";
repo = "feedgnuplot";
rev = "v${version}";
2018-10-01 15:38:27 +00:00
sha256 = "0npk2l032cnmibjj5zf3ii09mpxciqn32lx6g5bal91bkxwn7r5i";
2018-06-27 19:22:20 +00:00
};
outputs = [ "out" ];
2018-06-27 19:22:20 +00:00
nativeBuildInputs = [ makeWrapper gawk ];
buildInputs = [ gnuplot perl ]
++ (with perlPackages; [ ListMoreUtils IPCRun StringShellQuote ]);
# Fontconfig error: Cannot load default config file
FONTCONFIG_FILE = fontsConf;
postPatch = ''
patchShebangs .
'';
2018-06-28 11:46:10 +00:00
# Tests require gnuplot 4.6.4 and are completely skipped with gnuplot 5.
doCheck = false;
2018-06-27 19:22:20 +00:00
postInstall = ''
wrapProgram $out/bin/feedgnuplot \
--prefix "PATH" ":" "$PATH" \
--prefix "PERL5LIB" ":" "$PERL5LIB"
2018-06-28 03:23:55 +00:00
install -D -m 444 -t $out/share/bash-completion/completions \
completions/bash/feedgnuplot
install -D -m 444 -t $out/share/zsh/site-functions \
completions/zsh/_feedgnuplot
2018-06-27 19:22:20 +00:00
'';
meta = with stdenv.lib; {
description = "General purpose pipe-oriented plotting tool";
homepage = "https://github.com/dkogan/feedgnuplot/";
2018-06-27 19:22:20 +00:00
license = with licenses; [ artistic1 gpl1Plus ];
platforms = platforms.unix;
maintainers = with maintainers; [ mnacamura ];
};
}