forked from mirrors/nixpkgs
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
|
{ stdenv, fetchFromGitHub, buildPerlPackage, makeWrapper, gawk
|
||
|
, makeFontsConf, freefont_ttf, gnuplot, perl, perlPackages
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
|
||
|
fontsConf = makeFontsConf { fontDirectories = [ freefont_ttf ]; };
|
||
|
|
||
|
in
|
||
|
|
||
|
buildPerlPackage rec {
|
||
|
name = "feedgnuplot-${version}";
|
||
|
version = "1.49";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "dkogan";
|
||
|
repo = "feedgnuplot";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1bjnx36rsxlj845w9apvdjpza8vd9rbs3dlmgvky6yznrwa6sm02";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ makeWrapper gawk ];
|
||
|
|
||
|
buildInputs = [ gnuplot perl ]
|
||
|
++ (with perlPackages; [ ListMoreUtils IPCRun StringShellQuote ]);
|
||
|
|
||
|
# Fontconfig error: Cannot load default config file
|
||
|
FONTCONFIG_FILE = fontsConf;
|
||
|
|
||
|
postPatch = ''
|
||
|
patchShebangs .
|
||
|
'';
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
postInstall = ''
|
||
|
wrapProgram $out/bin/feedgnuplot \
|
||
|
--prefix "PATH" ":" "$PATH" \
|
||
|
--prefix "PERL5LIB" ":" "$PERL5LIB"
|
||
|
'';
|
||
|
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "General purpose pipe-oriented plotting tool";
|
||
|
homepage = https://github.com/dkogan/feedgnuplot/;
|
||
|
license = with licenses; [ artistic1 gpl1Plus ];
|
||
|
platforms = platforms.unix;
|
||
|
maintainers = with maintainers; [ mnacamura ];
|
||
|
};
|
||
|
}
|